UNPKG

mui-spfx-controls

Version:
14 lines 618 B
import { Version } from '@microsoft/sp-core-library'; import type { IPropertyPaneConfiguration } from '@microsoft/sp-property-pane'; import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base'; export interface ISitePickerWebPartProps { items: string; } export default class SitePickerWebPart extends BaseClientSideWebPart<ISitePickerWebPartProps> { render(): void; protected onInit(): Promise<void>; protected onDispose(): void; protected get dataVersion(): Version; protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration; } //# sourceMappingURL=NavigationWebPart.d.ts.map