This commit is contained in:
2025-09-11 02:51:47 +10:00
parent a2bd089730
commit 38bd4239fe
9 changed files with 223 additions and 72 deletions

View File

@@ -45,9 +45,11 @@ type Eval =
| { err: LeadErr }
| 'unset';
interface CellT {
raw_val: string;
val?: Eval;
interface CellT {
raw: string;
temp_raw: string;
temp_eval?: Eval;
eval?: Eval;
}
export type { Eval, LeadMsg, LeadErr, Literal, CellRef, LiteralValue, CellT };