Newer
Older

Дмитрий Малюгин
committed
export interface ISheet {

Дмитрий Малюгин
committed
title: string;
address: string;
entities: IEntity[];
}
export interface IEntity {
entity_uuid: string;
entity_user?: string;
user_nick_name?: string;
entity_order?: number;
entity_type: string;
title?: string;
text?: string;
font_size?: string;
paragraph_size?: string;
text_position?: string;
image_url?: string;
image_width?: number;
image_height?: number;
entity_position?: string;
entity_title_position?: string;
image_scale?: string;
table_columns?: string;
table_data?: string;
}

Дмитрий Малюгин
committed
export type TThemes =
| 'green-blue'
| 'red-yellow'
| 'darkBlue-pink-orange'
| 'pink-lightBlue-green'
| 'pink-red-orange'
| 'pink-purple'
| 'purple-pink';