From 80e5beb6eb60c2e9a1edb75c4df1ee8545147ebe Mon Sep 17 00:00:00 2001 From: Phil Nova Date: Tue, 5 Jun 2018 17:32:19 -0700 Subject: [PATCH] Prefer export to declare --- types/react-native-custom-tabs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-native-custom-tabs/index.d.ts b/types/react-native-custom-tabs/index.d.ts index 5e0754c546..42fd1cdf78 100644 --- a/types/react-native-custom-tabs/index.d.ts +++ b/types/react-native-custom-tabs/index.d.ts @@ -19,6 +19,6 @@ export interface CustomTabsOptions { headers?: any; } -declare namespace CustomTabs { +export namespace CustomTabs { function openURL(url: string, options?: CustomTabsOptions): Promise; }