File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 8585 declare global {
8686 interface Window {
8787 adminforthTwoFaModal: {
88- get2FaConfirmationResult: (
89- verifyingCallback ? : ( confirmationResult : string ) => Promise < boolean > ,
90- title ? : string
88+ get2FaConfirmationResult: (
89+ title ? : string ,
90+ verifyingCallback ? : ( confirmationResult : string ) => Promise < boolean >
9191 ) => Promise <any >;
9292 };
9393 }
127127
128128
129129 window .adminforthTwoFaModal = {
130- get2FaConfirmationResult : (verifyingCallback ? : (confirmationResult : string ) => Promise <boolean >, title ? : string ) =>
130+ get2FaConfirmationResult : (title ? : string , verifyingCallback ? : (confirmationResult : string ) => Promise <boolean >) =>
131131 new Promise (async (resolve , reject ) => {
132132 if (modelShow .value ) throw new Error (' Modal is already open' );
133133 const skipAllowModal = await checkIfSkipAllowModal ();
You can’t perform that action at this time.
0 commit comments