Browse Source

fix(nc-gui): use MetaType for TabItem.meta

pull/5307/head
Wing-Kam Wong 2 years ago
parent
commit
0d8da48949
  1. 4
      packages/nc-gui/lib/types.ts

4
packages/nc-gui/lib/types.ts

@ -1,4 +1,4 @@
import type { FilterType, ViewTypes } from 'nocodb-sdk'
import type { FilterType, MetaType, ViewTypes } from 'nocodb-sdk'
import type { I18n } from 'vue-i18n'
import type { Theme as AntTheme } from 'ant-design-vue/es/config-provider'
import type { UploadFile } from 'ant-design-vue'
@ -79,7 +79,7 @@ export interface TabItem {
viewId?: string
sortsState?: Map<string, any>
filterState?: Map<string, any>
meta?: Record<string, any>
meta?: MetaType
}
export interface SharedViewMeta extends Record<string, any> {

Loading…
Cancel
Save