1 | import { NavOptions } from './nav-util';
|
2 | export interface Overlay {
|
3 | present(opts?: NavOptions): Promise<any>;
|
4 | dismiss(data?: any, role?: string, navOptions?: NavOptions): Promise<any>;
|
5 | onDidDismiss(callback: Function): void;
|
6 | onWillDismiss(callback: Function): void;
|
7 | }
|