import { Brand } from './helpers/brand' import { OverallTheme } from '@/shared/utils/styles' export type AllowedImageName = { imageDesc: string imageName: string } export type DocId = Brand export type MainDocument = { doc: { name: string id: DocId } path: string } export type ProjectCompiler = 'pdflatex' | 'latex' | 'xelatex' | 'lualatex' export type OverallThemeMeta = { name: string path: string val: OverallTheme } export type SpellCheckLanguage = { name: string code: string dic?: string server?: false }