Skip to content

Commit

Permalink
fix(core): ts lint issue (#16814)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Dec 19, 2018
1 parent f613b3b commit fb38002
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions core/src/components/nav/nav-interface.ts
Expand Up @@ -41,9 +41,7 @@ export interface NavOptions extends RouterOutletOptions {
viewIsReady?: (enteringEl: HTMLElement) => Promise<any>;
}

export interface Page extends Function {
new (...args: any[]): any;
}
export type Page = new (...args: any[]) => any;

export type TransitionResolveFn = (hasCompleted: boolean, requiresTransition: boolean, enteringName?: string, leavingName?: string, direction?: string) => void;

Expand Down

0 comments on commit fb38002

Please sign in to comment.