From 0d90045c2c61ae1822edc74e85c29ef0305a64ff Mon Sep 17 00:00:00 2001 From: bglee Date: Fri, 14 Sep 2018 12:41:12 +0900 Subject: [PATCH] fix #87 change isomorphic-fetch ts definition: export default to export = --- src/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 0c53ad9..4a2ecdd 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -14,4 +14,4 @@ declare namespace unfetch { declare const unfetch: typeof fetch; -export default unfetch; +export = unfetch;