From 7449e5329d560c606426fd159f8d32a7a31f9ae9 Mon Sep 17 00:00:00 2001 From: braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Thu, 22 Sep 2022 17:36:40 +0200 Subject: [PATCH] chore(nc-gui): reexport use global types --- packages/nc-gui/composables/useGlobal/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/nc-gui/composables/useGlobal/index.ts b/packages/nc-gui/composables/useGlobal/index.ts index b273dadd81..31599e1cf1 100644 --- a/packages/nc-gui/composables/useGlobal/index.ts +++ b/packages/nc-gui/composables/useGlobal/index.ts @@ -4,6 +4,8 @@ import { useGlobalState } from './state' import type { UseGlobalReturn } from './types' import { createGlobalState, useNuxtApp, watch } from '#imports' +export * from './types' + /** * Global state is injected by {@link import('~/plugins/state') state} plugin into our nuxt app (available as `$state`). * You can still call `useGlobal` to receive the `$state` object and access the global state.