UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

9 lines 402 B
import { ICustomCollectionField } from './ICustomCollectionField'; export interface IBaseCollectionFieldProps { field: ICustomCollectionField; item: any; disableEdit: boolean; fOnValueChange: (fieldId: string, value: any) => void | Promise<void>; fValidation: (field: ICustomCollectionField, value: any) => Promise<string>; } //# sourceMappingURL=IBaseCollectionFIeldsProps.d.ts.map