export { Option } from "optionals"; export type Message = { content: string; preset?: string; fg?: string; bg?: string; font?: string; sender?: string; }; export type Conversation = { name: string; description: string; messages: string[]; presets: Record; }; export type Preset = { fg: string; bg?: string; font?: string; }; export type Database = { messages: Record; conversations: Record; presets: Record; message_id: number; conversation_id: number; };