/** * What an open wait looks like, and what it leaves behind. * * The live line carries only what is safe to repaint: the running mark, what * the terminal is parked on, the countdown at the value column, and the keys * beneath it. The link and the code went to the transcript once when the wait * opened, so nothing a person copies is ever truncated. When the wait settles * it leaves one line: the same record shape an answered question leaves. */ import type { Doc, PromptChip } from "../doc.js"; import type { WaitKeys, WaitView } from "./wait.js"; /** The keys an open wait offers, in paint order; stopping is always offered. */ export declare const waitChips: (keys: WaitKeys) => ReadonlyArray; /** The wait as the live scene shows it while it stands open. */ export declare const waitDoc: (view: WaitView, keys: WaitKeys, facts: { readonly nowMs: number; }) => Doc; /** The one transcript line a settled wait leaves behind. */ export declare const waitSettled: (view: WaitView, elapsedMs: number) => Doc; //# sourceMappingURL=view.d.ts.map