1 | import { PromptResult, LoginResult } from './dialogs-common';
|
2 | export * from './dialogs-common';
|
3 | export declare function alert(arg: any): Promise<void>;
|
4 | export declare function confirm(arg: any): Promise<boolean>;
|
5 | export declare function prompt(...args: any[]): Promise<PromptResult>;
|
6 | export declare function login(...args: any[]): Promise<LoginResult>;
|
7 | export declare function action(...args: any[]): Promise<string>;
|
8 |
|
9 |
|
10 |
|
11 | export declare const Dialogs: {
|
12 | alert: typeof alert;
|
13 | confirm: typeof confirm;
|
14 | prompt: typeof prompt;
|
15 | login: typeof login;
|
16 | action: typeof action;
|
17 | };
|