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

export interface IText {
  type: 'text';
  uuid: string;
  text: string;
  title?: string;
}

export interface IImage {
  type: 'image';
  uuid: string;
  position: 'left' | 'center' | 'right';