UNPKG

formgen-react

Version:

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

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