@omnia/fx-spfx
Version:
Provide Omnia Fx Sharepoint Stuffs.
15 lines (14 loc) • 511 B
TypeScript
export interface OmniaBlock {
category?: string;
}
export interface SpfxWebpartGalleryOptions {
documentationUrl?: string;
imageRelativeUrl?: string;
downloadFileName?: string;
}
declare module "@omnia/tooling-composers/internal-do-not-import-from-here/ComponentComposer" {
interface IWebComponentComposer {
registerSpfxWebpart?(omniaBlock?: OmniaBlock): IWebComponentComposer;
registerSpfxWebpartGallery?(options?: SpfxWebpartGalleryOptions): IWebComponentComposer;
}
}