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