14 lines
398 B
TypeScript
Executable File
14 lines
398 B
TypeScript
Executable File
import ModalService from '../../services/modal.service';
|
|
|
|
const modalService = await ModalService.getInstance();
|
|
// export async function confirm() {
|
|
// modalService.confirmPairing();
|
|
// }
|
|
|
|
export async function closeConfirmationModal() {
|
|
modalService.closeConfirmationModal();
|
|
}
|
|
|
|
(window as any).confirm = confirm;
|
|
(window as any).closeConfirmationModal = closeConfirmationModal;
|