const authors = {
"Режиссёр": {
id: 1,
name: "Серёжа
},
"Сценарист": {
id: 2,
name: "Света
},
}
interface Author {
id: number;
name: string;
}
const authors: Record<string, Author> = { ... }