export interface ICodeEditorConfig { language: string; theme: 'fd-dark' | 'vs-dark' | 'vs-light'; } export type TEditorConfig = Partial; export interface IEditor { key: 'editors:roles' | 'editors:webforms' | 'editors:code' | 'editors:code:method' | 'editors:unknown' | 'editors:debugger' | 'editors:img' | 'editors:model' | 'editors:settings' | 'editors:reports' | 'editors:http-handlers' | 'editors:localization'; config?: TEditorConfig; }