export interface IFoo {
bar: TBar[]
}
type TBar = {
a: string;
b: number;
}
IFoo
, нужно ли мне импортировать также и TBar
?TBar
, пока не импортируешь TBar
. const foo: IFoo = {
bar: [
{a: "white", b: 10},
{a: "black", b: 20}
]
}