@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
29 lines (28 loc) • 754 B
TypeScript
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;
}
}
}