This commit is contained in:
2025-09-11 18:47:45 +10:00
parent 38bd4239fe
commit 30578a15d5
11 changed files with 440 additions and 167 deletions

View File

@@ -1,3 +1,5 @@
import type { Position } from "./grid.svelte.ts";
interface LeadMsg {
msg_type: 'set' | 'get' | 'error' | 'bulk' | 'eval';
cell?: CellRef;
@@ -48,6 +50,7 @@ type Eval =
interface CellT {
raw: string;
temp_raw: string;
pos: Position;
temp_eval?: Eval;
eval?: Eval;
}