1 | import { ActionSheetButton, ActionSheetOptions } from './action-sheet-options';
|
2 | import { App } from '../app/app';
|
3 | import { Config } from '../../config/config';
|
4 | import { NavOptions } from '../../navigation/nav-util';
|
5 | import { ViewController } from '../../navigation/view-controller';
|
6 |
|
7 |
|
8 |
|
9 | export declare class ActionSheet extends ViewController {
|
10 | private _app;
|
11 | constructor(app: App, opts: ActionSheetOptions, config: Config);
|
12 | /**
|
13 | * @hidden
|
14 | */
|
15 | getTransitionName(direction: string): string;
|
16 | /**
|
17 | * @param {string} title Action sheet title
|
18 | */
|
19 | setTitle(title: string): ActionSheet;
|
20 | |
21 |
|
22 |
|
23 | setSubTitle(subTitle: string): ActionSheet;
|
24 | |
25 |
|
26 |
|
27 | addButton(button: ActionSheetButton | string): ActionSheet;
|
28 | |
29 |
|
30 |
|
31 |
|
32 |
|
33 |
|
34 | present(navOptions?: NavOptions): Promise<any>;
|
35 | }
|