@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
26 lines (25 loc) • 694 B
TypeScript
export interface IEditorChromeProperties {
}
/**Editor chrome*/
export interface IEditorChrome extends IEditorChromeProperties {
[name: string]: any;
renderNavigationDrawer?: (h: any) => JSX.Element;
actionToolbarRoles?: 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;
}
}
}