remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/app/ui/modal-dialog-custom.d.ts

30 lines
983 B

export function alert(title: any, text: any): {
container: HTMLElement;
okListener: () => void;
cancelListener: () => void;
hide: () => void;
};
export function prompt(title: any, text: any, inputValue: any, ok: any, cancel: any, focus: any): void;
export function promptPassphrase(title: any, text: any, inputValue: any, ok: any, cancel: any): void;
export function promptPassphraseCreation(ok: any, cancel: any): {
container: HTMLElement;
okListener: () => void;
cancelListener: () => void;
hide: () => void;
};
export function promptMulti({ title, text, inputValue }: {
title: any;
text: any;
inputValue: any;
}, ok: any, cancel: any): {
container: HTMLElement;
okListener: () => void;
cancelListener: () => void;
hide: () => void;
};
export function confirm(title: any, text: any, ok: any, cancel: any): {
container: HTMLElement;
okListener: () => void;
cancelListener: () => void;
hide: () => void;
};