Skip to content
Snippets Groups Projects
environment.ts 980 B
Newer Older
malyusgun's avatar
malyusgun committed
import type { ITableColumn } from '@/app/interfaces/entities';

  sheet_uuid: string;
export interface IEntity {
  entity_uuid: string;
  entity_user?: string;
  user_nick_name?: string;
  entity_order?: number;
  entity_type: string;
  divider_height?: number;
  divider_type?: 'solid' | 'dashed' | 'dotted';
malyusgun's avatar
malyusgun committed
  title?: string | null;
  text?: string | null;
  font_size?: string | null;
  paragraph_size?: string | null;
  text_position?: string | null;
  image_buffer?: string;
  imageUrl?: string;
  image_width?: number;
  image_height?: number;
  entity_position?: string;
  entity_title_position?: string;
  image_scale?: string;
malyusgun's avatar
malyusgun committed
  table_columns?: ITableColumn[];
  table_data?: {
    [key: string]: never;
  }[];
export type TThemes =
  | 'green-blue'
  | 'red-yellow'
  | 'darkBlue-pink-orange'
  | 'pink-lightBlue-green'
  | 'pink-red-orange'
  | 'pink-purple'
  | 'purple-pink';