Newer
Older

Дмитрий Малюгин
committed
type: 'table';

Дмитрий Малюгин
committed
title?: string;

Дмитрий Малюгин
committed
}[];
}
interface ITableColumn {
name: string;
type: ITableColumnTypes;
}
type ITableColumnTypes =
| 'text'
| 'number'
| 'select'
| 'multiselect'
| 'checkbox'
| 'status'
| 'rating'
| 'knob';

Дмитрий Малюгин
committed
export interface IText {
type: 'text';
uuid: string;
text: string;
title?: string;
}
export interface IImage {
type: 'image';
uuid: string;

Дмитрий Малюгин
committed
url: string;
width: number;
height: number;