@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
15 lines (14 loc) • 480 B
TypeScript
export interface OmniaBlock {
category?: string;
}
export interface SpfxWebpartGalleryOptions {
documentationUrl?: string;
imageRelativeUrl?: string;
downloadFileName?: string;
}
declare module "../../../tooling/composers/ComponentComposer" {
interface IWebComponentComposer {
registerSpfxWebpart?(omniaBlock?: OmniaBlock): IWebComponentComposer;
registerSpfxWebpartGallery?(options?: SpfxWebpartGalleryOptions): IWebComponentComposer;
}
}