export interface IEditorChromeProperties { } /**Editor chrome*/ export interface IEditorChrome extends IEditorChromeProperties { [name: string]: any; renderNavigationDrawer?: (h: any) => JSX.Element; actionToolbarRoles?: string[]; contextParams?: { [key: string]: string; }; closeEditor: () => void; navigationDrawerTitle?: string; renderNavigationDrawerBottom?: (h: any) => JSX.Element; hideCloseButton?: boolean; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-editor-chrome": IEditorChrome; } } }