|
1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- async function dismissAlert() {
- if (!this.activeDialog) {
- throw new Error('no such alert');
- }
- await this.activeDialog.dismiss();
- delete this.activeDialog;
- return null;
- }
- exports.default = dismissAlert;
|