Prefer export to declare

This commit is contained in:
Phil Nova
2018-06-05 17:32:19 -07:00
committed by GitHub
parent d48e6d5e3b
commit 80e5beb6eb

View File

@@ -19,6 +19,6 @@ export interface CustomTabsOptions {
headers?: any;
}
declare namespace CustomTabs {
export namespace CustomTabs {
function openURL(url: string, options?: CustomTabsOptions): Promise<boolean>;
}