From 3037150bf6e0d9107ff6474c99f10e1f0bfcaabf Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Sun, 16 Oct 2022 23:16:52 +0200 Subject: [PATCH] Fix default imports --- src/index.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 740eb67..acbc740 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,8 @@ -export { default as bplistCreator } from "bplist-creator"; -export { default as bplistParser } from "bplist-parser"; +import * as bplistCreator from "bplist-creator"; +import * as bplistParser from "bplist-parser"; + +export { bplistCreator } +export { bplistParser } export { parse } from "./parse"; export { readFile } from "./readFile"; export { readFileSync } from "./readFileSync";