UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

13 lines 512 B
import { BaseComponentContext } from "@microsoft/sp-component-base"; import { IBasePickerStyles, ITag } from "@fluentui/react/lib/Pickers"; import { IReadonlyTheme } from "@microsoft/sp-component-base"; export interface ITeamPickerProps { appcontext: BaseComponentContext; onSelectedTeams: (tagsList: ITag[]) => void; selectedTeams: ITag[]; itemLimit?: number; label?: string; styles?: IBasePickerStyles; themeVariant?: IReadonlyTheme; } //# sourceMappingURL=ITeamPickerProps.d.ts.map