/** * Type definitions for visual-explainer-pi */ export type VisualType = "architecture" | "flowchart" | "sequence" | "er" | "state" | "table" | "diff" | "plan" | "timeline" | "dashboard" | "slides" | "mermaid_custom"; export type Aesthetic = "blueprint" | "editorial" | "paper" | "terminal" | "dracula" | "nord" | "solarized" | "gruvbox"; export type Theme = "light" | "dark" | "auto"; export interface GenerateVisualParams { type: VisualType; content: string | Record[]; title: string; aesthetic?: Aesthetic; theme?: Theme; filename?: string; } export interface GenerateResult { filePath: string; previewSnippet: string; url: string; } export interface ExtensionState { recentFiles: string[]; tempDirs: string[]; defaultAesthetic: Aesthetic; defaultTheme: Theme; } export interface TemplateContext { title: string; content: unknown; aesthetic: Aesthetic; theme: Theme; } export interface Palette { [key: string]: string; bg: string; surface: string; surface2: string; surfaceElevated: string; border: string; borderBright: string; text: string; textDim: string; accent: string; accentDim: string; green: string; greenDim: string; orange: string; orangeDim: string; teal: string; tealDim: string; plum: string; plumDim: string; } export type FontPairing = { body: string; mono: string; }; //# sourceMappingURL=types.d.ts.map