fix(angular): platform ready()

This commit is contained in:
Manu Mtz.-Almeida
2018-04-20 16:08:38 +02:00
parent 4ea8881f33
commit 2b3c14b608
3 changed files with 15 additions and 10 deletions

View File

@ -20,9 +20,10 @@ import mdLeaveAnimation from './animations/md.leave';
})
export class ActionSheet implements OverlayInterface {
presented = false;
mode!: Mode;
color!: string;
presented = false;
animation?: Animation;
@Element() el!: HTMLElement;

View File

@ -89,11 +89,6 @@ describe('parser', () => {
win = new TestWindow();
});
});
export class TestWindow2 {
}
export declare interface TestWindow2 extends Window {}
export function mockRouteElement(win: Window, path: string, component: string) {
const el = win.document.createElement('ion-route');