export interface module {
_about: string,
parent?: modules.moduleID//Вот тут ошибка
}
export interface modules {
[moduleID: number]: module
}
const list: modules = {
0: {
_about: "Root",
},
1: {
_about: "Child",
parent: 0 //Нужно ограничить до 0 | 1
}
};