IPopupEventArgs interface
Represents arguments used before popup event.
- Extends
Properties
cancel | A handler should call this immediately when handling the event to signal that it will not permit a popup. |
request |
A handler should call this immediately when handling the event to signal that it intends to show a popup. |
show |
A handler should call this when ready, to indicate that the login flow should now continue and launch the popup. |
Property Details
cancel
A handler should call this immediately when handling the event to signal that it will not permit a popup.
cancel: (error?: Error) => void;
Property Value
(error?: Error) => void
requestPopup
A handler should call this immediately when handling the event to signal that it intends to show a popup.
requestPopup: () => void;
Property Value
() => void
showPopup
A handler should call this when ready, to indicate that the login flow should now continue and launch the popup.
showPopup: () => void;
Property Value
() => void