UNPKG

@microsoft/sp-dialog

Version:

SharePoint Framework support for displaying dialog boxes

17 lines 457 B
/** * Interface for properties used to display the loading spinner in the web part display area. * * @public */ export interface IPlaceholderSpinnerProps { /** * Label associated with the spinner. */ label: string; /** * Hide spinner at start if set to true. * In such case, use state showSpinner to true when to show the spinner */ hideSpinner?: boolean; } //# sourceMappingURL=IPlaceholderSpinnerProps.d.ts.map