Предположим, что у нас есть два интерфейса:
interface WithStringArray1 {
property: [string]
}
interface WithStringArray2 {
property: string[]
}
Давайте объявим некоторые переменные этих типов:
let type1:WithStringArray1 = {
property: []
}
let type2:WithStringArray2 = {
property: []
}
Первая инициализация не выполняется:
TS2322: Type '{ property: undefined[]; }' is not assignable to type 'WithStringArray1'.
Types of property 'property' are incompatible.
Type 'undefined[]' is not assignable to type '[string]'.
Property '0' is missing in type 'undefined[]'.
Второй вариант в порядке.
В чем разница между [string]
и string[]
?