UNPKG

sp-formgen-react

Version:

Formula generator for SharePoint with JSON for react. UI Fabric controls are used for rendering

17 lines (15 loc) 508 B
import { IFormBaseInputState } from "formgen-react/dist/formBaseInput/FormBaseInput.types"; import { IPersonaProps, IPeoplePickerProps } from "office-ui-fabric-react"; /** * The People picker state */ export interface IFormSPPeoplePickerState extends IFormBaseInputState { mostRecentlyUsed: IPersonaProps[]; peopleList: IPersonaProps[]; } /** * The People picker properties */ export interface IFormSPPeoplePickerProps extends IPeoplePickerProps { allowMultiple?: boolean; }