UNPKG

@pnp/spfx-property-controls

Version:

Reusable property pane controls for SharePoint Framework solutions

14 lines 708 B
import { IPropertyPaneCustomFieldProps, IPropertyPaneLinkProps } from '@microsoft/sp-property-pane'; import { IPlaceholderWithCalloutProps } from '../../common/placeholderWithCallout/IPlaceholderWithCallout'; /** * Internal properties of PropertyFieldLinkWithCallout custom field */ export interface IPropertyFieldLinkWithCalloutPropsInternal extends IPropertyPaneCustomFieldProps, IPropertyPaneLinkProps, IPlaceholderWithCalloutProps { } /** * Public properties of PropertyFieldLinkWithCallout custom field */ export interface IPropertyFieldLinkWithCalloutProps extends IPropertyPaneLinkProps, IPlaceholderWithCalloutProps { key: string; } //# sourceMappingURL=IPropertyFieldLinkWithCallout.d.ts.map