Skip to content
Snippets Groups Projects
entities.ts 329 B
Newer Older
export interface ITable {
  uuid: string;
  name: string;
  columns: ITableColumn[];
  data: {
    [key: string]: any;
  };
}
interface ITableColumn {
  name: string;
  type: ITableColumnTypes;
}
type ITableColumnTypes =
  | 'text'
  | 'number'
  | 'select'
  | 'multiselect'
  | 'checkbox'
  | 'status'
  | 'rating'
  | 'knob';