import * as z from "zod"; const spinnerPresetSchema = z.enum(["dots", "lights", "tildes", "pulse"]); const thinkingLevelIndicatorSchema = z.enum(["border", "model"]); export type SpinnerPreset = z.infer; export type ThinkingLevelIndicator = z.infer; export const editorConfigSchema = z.object({ spinner: spinnerPresetSchema.optional(), thinkingLevelIndicator: thinkingLevelIndicatorSchema.optional(), });