From 7a9689264116021daa659df94ced2d94eb295bac Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Mon, 15 Feb 2021 15:33:57 +0100 Subject: [PATCH 1/2] Fix export typed-array in base --- base.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/base.d.ts b/base.d.ts index 9005ef9fc..c4ea3242d 100644 --- a/base.d.ts +++ b/base.d.ts @@ -3,6 +3,7 @@ // Basic export * from './source/basic'; +export * from "./source/typed-array" // Utilities export {Except} from './source/except'; From 0bd48a93affe8c04d07bbf4052c81fb7436fc512 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 15 Feb 2021 21:58:12 +0700 Subject: [PATCH 2/2] Update base.d.ts --- base.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.d.ts b/base.d.ts index c4ea3242d..625a05d58 100644 --- a/base.d.ts +++ b/base.d.ts @@ -3,7 +3,7 @@ // Basic export * from './source/basic'; -export * from "./source/typed-array" +export * from './source/typed-array'; // Utilities export {Except} from './source/except';