This commit is contained in:
2025-09-10 15:54:52 +10:00
parent c41d5487a9
commit e17d66fed1
10 changed files with 349 additions and 244 deletions

View File

@@ -1,5 +1,5 @@
interface LeadMsg {
msg_type: 'set' | 'get' | 'error' | 'bulk';
msg_type: 'set' | 'get' | 'error' | 'bulk' | 'eval';
cell?: CellRef;
raw?: string;
eval?: Eval;
@@ -44,3 +44,10 @@ type Eval =
| { range: Range }
| { err: LeadErr }
| 'unset';
interface CellT {
raw_val: string;
val?: Eval;
}
export type { Eval, LeadMsg, LeadErr, Literal, CellRef, LiteralValue, CellT };