refactor(nav-interfaces): remove unecessary semicolons (#11450)

This commit is contained in:
Ibby Hadeed
2017-04-30 20:35:46 -04:00
committed by Manu MA
parent a04b577f1d
commit d701799d8b

View File

@@ -2,30 +2,30 @@ import { NavOptions } from './nav-util';
export interface Nav {
goToRoot(opts: NavOptions): Promise<any>;
};
}
export interface Tabs {
_tabs: Tab[];
select(tabOrIndex: number | Tab, opts: NavOptions): void;
_top: number;
setTabbarPosition(top: number, bottom: number): void;
};
}
export interface Tab {
tabUrlPath: string;
tabTitle: string;
index: number;
};
}
export interface Content {
resize(): void;
};
}
export interface Footer {
};
}
export interface Header {
};
}
export interface Navbar {
setBackButtonText(backButtonText: string): void;