From 598acb964217506c8cdaf9abc36d59c2e1b2d7a1 Mon Sep 17 00:00:00 2001 From: Sam Hunter Date: Tue, 28 Sep 2021 09:38:48 -0600 Subject: [PATCH] Export get and set Utils From Project (#8) Added get and set to the top level exports so they can be used by consumers of the library. This is helpful for e2e tests where we want to be able to change the status of the toolbar on the fly. --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index a81b68d..03a1433 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,5 @@ import { MSWToolbar } from './component/MSWToolbar'; -import { createUtils } from './utils'; +import { createUtils, set, get } from './utils'; -export { MSWToolbar, createUtils }; +export { MSWToolbar, createUtils, set, get }; export * from './types';