UNPKG

@omnia/fx-spfx

Version:
15 lines (14 loc) 511 B
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; } }