Skip to content
Snippets Groups Projects
environment.ts 400 B
Newer Older
import type { IImage, ITable, IText } from '@/app/interfaces/entities';
  sheet_uuid: string;
  title: string;
  address: string;
  entities: IEntity[];
}

export type IEntity = IText | ITable | IImage;

export type TThemes =
  | 'green-blue'
  | 'red-yellow'
  | 'darkBlue-pink-orange'
  | 'pink-lightBlue-green'
  | 'pink-red-orange'
  | 'pink-purple'
  | 'purple-pink';