This commit is contained in:
2025-09-10 13:33:15 +10:00
parent 2c058a654f
commit c41d5487a9
6 changed files with 118 additions and 37 deletions

View File

@@ -3,6 +3,7 @@ interface LeadMsg {
cell?: CellRef;
raw?: string;
eval?: Eval;
eval_config?: EvalConfig;
bulk_msgs?: Array<LeadMsg>;
}
@@ -31,6 +32,11 @@ interface LeadErr {
title: string;
}
interface EvalConfig {
do_propagation: boolean;
force_propagation: boolean;
}
// Tagged union
type Eval =
| { literal: Literal }