UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

20 lines 770 B
import { IChoiceGroupOption } from '@fluentui/react/lib/ChoiceGroup'; import { IPropertyFieldListPickerPropsInternal } from './IPropertyFieldListPicker'; import { ISPLists } from './IPropertyFieldListPickerHost'; /** * PropertyFieldListPickerHost properties interface */ export interface IPropertyFieldListMultiPickerHostProps extends IPropertyFieldListPickerPropsInternal { onChange: (targetProperty?: string, newValue?: any) => void; } /** * PropertyFieldSPListMultiplePickerHost state interface */ export interface IPropertyFieldListMultiPickerHostState { loadedLists: ISPLists; results: IChoiceGroupOption[]; selectedKeys: string[]; loaded: boolean; errorMessage?: string; } //# sourceMappingURL=IPropertyFieldListMultiPickerHost.d.ts.map