UNPKG

@microsoft/sp-dialog

Version:

SharePoint Framework support for displaying dialog boxes

14 lines 410 B
import BaseDialog from './BaseDialog'; /** * Internal implementation of a dialog to mimic browser's alert() behavior. * Third-party can use this by calling the static method Dialog.alert() * * @internal */ export default class AlertDialog extends BaseDialog { private _message; constructor(message: string); render(): void; onAfterClose(): void; } //# sourceMappingURL=AlertDialog.d.ts.map