From e69aadee666b962a678d2b1916a2ba7c38060daa Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Thu, 16 Mar 2023 12:05:28 +0800 Subject: [PATCH] chore(nc-gui): add missing imports --- packages/nc-gui/composables/useSharedView.ts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/nc-gui/composables/useSharedView.ts b/packages/nc-gui/composables/useSharedView.ts index 33cbbb2c00..2e552f6608 100644 --- a/packages/nc-gui/composables/useSharedView.ts +++ b/packages/nc-gui/composables/useSharedView.ts @@ -1,5 +1,15 @@ -import type { ExportTypes, FilterType, KanbanType, PaginatedType, RequestParams, SortType, TableType, ViewType } from 'nocodb-sdk' -import { UITypes } from 'nocodb-sdk' +import type { + ExportTypes, + FilterType, + KanbanType, + MapType, + PaginatedType, + RequestParams, + SortType, + TableType, + ViewType, +} from 'nocodb-sdk' +import { UITypes, ViewTypes } from 'nocodb-sdk' import { computed, parseProp, storeToRefs, useGlobal, useMetas, useNuxtApp, useState } from '#imports' export function useSharedView() {