mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 04:14:21 +08:00
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
import { NavOptions } from './nav-util';
|
|
|
|
export interface Overlay {
|
|
present(opts?: NavOptions): Promise<any>;
|
|
dismiss(data?: any, role?: any, navOptions?: NavOptions): Promise<any>;
|
|
onDidDismiss(callback: Function): void;
|
|
onWillDismiss(callback: Function): void;
|
|
}
|