Put openURL under CustomTabs namespace

This commit is contained in:
Phil Nova
2018-06-05 15:56:19 -07:00
committed by GitHub
parent 342e47182a
commit 74e68b4f12

View File

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