UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

19 lines 846 B
import { IPropertyFieldRoleDefinitionPickerPropsInternal } from './IPropertyFieldRoleDefinitionPicker'; import { IDropdownOption } from '@fluentui/react/lib/Dropdown'; import { IRoleDefinitionInformation } from './IRoleDefinitionInformation'; /** * PropertyFieldRoleDefinitionPickerHost properties interface */ export interface IPropertyFieldRoleDefinitionPickerHostProps extends IPropertyFieldRoleDefinitionPickerPropsInternal { onChange: (targetProperty?: string, newValue?: any) => void; } /** * PropertyFieldRoleDefinitionPickerHost state interface */ export interface IPropertyFieldRoleDefinitionPickerHostState { results: IDropdownOption[]; errorMessage?: string; roleDefinitionInformationResult?: IRoleDefinitionInformation[]; loading: boolean; } //# sourceMappingURL=IPropertyFieldRoleDefinitionPickerHost.d.ts.map