value1: 'some text',
value2: {
exp1: 'text with exp1',
exp2: 'text with exp2',
},
value3: 'another text',
}
Как с помощью Record типизировать ее? Но вариант
Record<string, any> не устроит. Линтер не пустит.
inteface { value1: string value2: anotherInterface or {...} ....
Record<string, string | Record<string, string>>
Обсуждают сегодня