UNPKG

@authsignal/browser

Version:

**[Authsignal](https://www.authsignal.com) provides passwordless step up authentication (Multi-factor Authentication - MFA) that can be placed anywhere within your application. Authsignal also provides a no-code fraud risk rules engine to manage when step

19 lines (18 loc) 504 B
import { A11yDialogEvent } from "a11y-dialog"; type PopupShowInput = { url: string; }; type PopupHandlerOptions = { width?: string; isClosable?: boolean; }; export declare class PopupHandler { private popup; constructor({ width, isClosable }: PopupHandlerOptions); create({ width, isClosable }: PopupHandlerOptions): void; destroy(): void; show({ url }: PopupShowInput): void; close(): void; on(event: A11yDialogEvent, listener: EventListener): void; } export {};