Add applyEffect

This commit is contained in:
2021-05-25 18:47:09 -07:00
parent ccd4974266
commit cc306dbf87
9 changed files with 169 additions and 45 deletions

View File

@ -28,7 +28,7 @@ export interface Term {
canPrecedeVariable: boolean;
}
export interface Action extends Term {
export interface ActionTerm extends Term {
action: ActionFn;
category: "action";
}