From 2ba1d3a3d4173de43cb97b57f00b7ef18449338d Mon Sep 17 00:00:00 2001 From: Paul Melero Date: Tue, 13 Dec 2022 17:02:01 +0100 Subject: [PATCH] Update index.js This is what is specified in the .d.ts file, and apart from that, it's breaking the import if you just `export * as default`. (Or I couldn't make it work!) --- index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 36a7b1f..0480a96 100644 --- a/index.js +++ b/index.js @@ -1 +1,3 @@ -export * as default from './base.js'; +import * as queryString from './base.js'; + +export default queryString;