mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
fix(core): ts lint issue (#16814)
This commit is contained in:
@ -41,9 +41,7 @@ export interface NavOptions extends RouterOutletOptions {
|
|||||||
viewIsReady?: (enteringEl: HTMLElement) => Promise<any>;
|
viewIsReady?: (enteringEl: HTMLElement) => Promise<any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Page extends Function {
|
export type Page = new (...args: any[]) => any;
|
||||||
new (...args: any[]): any;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type TransitionResolveFn = (hasCompleted: boolean, requiresTransition: boolean, enteringName?: string, leavingName?: string, direction?: string) => void;
|
export type TransitionResolveFn = (hasCompleted: boolean, requiresTransition: boolean, enteringName?: string, leavingName?: string, direction?: string) => void;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user