@pnp/spfx-property-controls
Version:
Reusable property pane controls for SharePoint Framework solutions
14 lines • 740 B
TypeScript
import { IPropertyPaneCustomFieldProps, IPropertyPaneCheckboxProps } from '@microsoft/sp-property-pane';
import { IPlaceholderWithCalloutProps } from '../../common/placeholderWithCallout/IPlaceholderWithCallout';
/**
* Internal properties of PropertyFieldCheckboxWithCallout custom field
*/
export interface IPropertyFieldCheckboxWithCalloutPropsInternal extends IPropertyPaneCustomFieldProps, IPropertyPaneCheckboxProps, IPlaceholderWithCalloutProps {
}
/**
* Public properties of PropertyFieldCheckboxWithCallout custom field
*/
export interface IPropertyFieldCheckboxWithCalloutProps extends IPropertyPaneCheckboxProps, IPlaceholderWithCalloutProps {
key: string;
}
//# sourceMappingURL=IPropertyFieldCheckboxWithCallout.d.ts.map