UNPKG

mui-spfx-controls

Version:
20 lines 928 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 IPeoplePickerWebPartProps { label: string; size: 'small' | 'medium'; disabled: boolean; variant: 'outlined' | 'filled' | 'standard'; tagVariant: 'outlined' | 'filled'; color: 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning'; tagColor: 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning'; } export default class PeoplePickerWebPart extends BaseClientSideWebPart<IPeoplePickerWebPartProps> { render(): void; protected onInit(): Promise<void>; protected onDispose(): void; protected get dataVersion(): Version; protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration; } //# sourceMappingURL=PeoplePickerWebPart.d.ts.map