UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

17 lines 567 B
import { IPropertyPaneCustomFieldProps } from '@microsoft/sp-property-pane'; /** * Public properties of the PropertyFieldSpinButton custom field */ export interface IPropertyPanePropertyEditorProps { /** * This current webpart. Usually 'this'. */ webpart: any; /** * An UNIQUE key indicates the identity of this control */ key: string; } export interface IPropertyPanePropertyEditorPropsInternal extends IPropertyPanePropertyEditorProps, IPropertyPaneCustomFieldProps { } //# sourceMappingURL=IPropertyPanePropertyEditor.d.ts.map