better-looking parameters

This commit is contained in:
Joeri Exelmans 2025-05-12 23:40:58 +02:00
parent 9afaa41fbb
commit 95eb8aef84
10 changed files with 306 additions and 229 deletions

11
src/LambdaBlock.tsx Normal file
View file

@ -0,0 +1,11 @@
import type { EditorState } from "./Editor";
import type { Dynamic } from "./util/extra";
export interface LambdaBlockState {
kind: "lambda";
env: any;
paramName: string;
expr: EditorState;
resolved: undefined | Dynamic;
}