@omnia/fx-spfx
Version:
Provide Omnia Fx Sharepoint Stuffs.
17 lines (16 loc) • 394 B
TypeScript
export interface IOmniaWPContainerSettings {
[name: string]: any;
onClosed?: () => void;
onChange?: (value: any) => void;
}
declare global {
namespace JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omnia-fx-spfx-wp-settings": IOmniaWPContainerSettings;
}
}
}