Browse Source

refactor(nocodb): implements KanbanColumnType

pull/5253/head
Wing-Kam Wong 2 years ago
parent
commit
56fb324ba4
  1. 4
      packages/nocodb/src/lib/models/KanbanViewColumn.ts

4
packages/nocodb/src/lib/models/KanbanViewColumn.ts

@ -3,9 +3,9 @@ import { CacheGetType, CacheScope, MetaTable } from '../utils/globals';
import View from './View';
import NocoCache from '../cache/NocoCache';
import { extractProps } from '../meta/helpers/extractProps';
import { BoolType } from 'nocodb-sdk';
import { BoolType, KanbanColumnType } from 'nocodb-sdk';
export default class KanbanViewColumn {
export default class KanbanViewColumn implements KanbanColumnType {
id: string;
title?: string;
show?: BoolType;

Loading…
Cancel
Save