UNPKG

@omnia/fx

Version:

Provide Omnia Fx typings and tooling for clientside Omnia development.

15 lines (14 loc) 503 B
import { WebComponentDefinition } from "../../models"; export interface SPFXWebComponentDefinition extends WebComponentDefinition { showInSpfxWebpart: boolean; category: string; } export interface SPFXStandaloneWebComponentDefinition extends WebComponentDefinition { showInSpfxWebpartGallery?: boolean; spfxWebpartGallery?: SpfxWebpartGalleryInfo; } export interface SpfxWebpartGalleryInfo { documentationUrl?: string; imageRelativeUrl?: string; downloadFileName?: string; }