import type { RecordingStatus } from "./state.js"; export interface StatusIntentMeta { glyph: string; glyphColorKey: "error" | "warning"; label: string; gatesSttPipeline: boolean; } export const STATUS_META: Record = { recording: { glyph: "●", glyphColorKey: "error", label: "Recording", gatesSttPipeline: false, }, paused: { glyph: "⏸", glyphColorKey: "warning", label: "Paused", gatesSttPipeline: true, }, };