import type { Theme } from "../interfaces/general/index.ts"; export type Description = { category: string; type?: string; text: string; }; type DescriptionList = { [Key in keyof Partial]: Description; }; // todo: описать в этом формате все переменные declare const descriptions: DescriptionList; export default descriptions;