From a9361a1606188739712b5331b77af9c330edf1fd Mon Sep 17 00:00:00 2001 From: Alin Eugen Deac Date: Sun, 29 Sep 2024 18:03:47 +0200 Subject: [PATCH] Export Application Configurator --- packages/contracts/src/core/configuration/index.ts | 4 ++++ packages/contracts/src/core/index.ts | 1 + 2 files changed, 5 insertions(+) create mode 100644 packages/contracts/src/core/configuration/index.ts diff --git a/packages/contracts/src/core/configuration/index.ts b/packages/contracts/src/core/configuration/index.ts new file mode 100644 index 00000000..4ca827c9 --- /dev/null +++ b/packages/contracts/src/core/configuration/index.ts @@ -0,0 +1,4 @@ +import Configurator from "./Configurator"; +export type { + Configurator +} \ No newline at end of file diff --git a/packages/contracts/src/core/index.ts b/packages/contracts/src/core/index.ts index 64384633..a2afbf98 100644 --- a/packages/contracts/src/core/index.ts +++ b/packages/contracts/src/core/index.ts @@ -30,4 +30,5 @@ export { type BootstrapperConstructor } +export * from './configuration/index'; export * from './types'; \ No newline at end of file