diff options
author | Frans Bongers <fransbongers@franss-mbp.home> | 2025-02-22 13:36:46 +0100 |
---|---|---|
committer | Frans Bongers <fransbongers@franss-mbp.home> | 2025-02-22 13:36:46 +0100 |
commit | 6379a462c75faefb08ac1e8e367fc7ead0c206c3 (patch) | |
tree | a7b0ba7ba139e6089dcb41a2d026281528e36b21 /types.d.ts | |
parent | fbbf82d8db3bf6bf840553de4bc5ed8276f67ac7 (diff) | |
download | land-and-freedom-6379a462c75faefb08ac1e8e367fc7ead0c206c3.tar.gz |
Diffstat (limited to 'types.d.ts')
-rw-r--r-- | types.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -114,7 +114,7 @@ export type States = { [key: string]: any; }; -export type EngineNode = FunctionNode | LeafNode | SeqNode; +export type EngineNode = FunctionNode | StateNode | SeqNode; export interface FunctionNode { t: 'f'; @@ -128,7 +128,7 @@ export interface SeqNode { c: EngineNode[]; } -export interface LeafNode<T = any> { +export interface StateNode<T = any> { t: 'l'; s: string; // State p: FactionId | 'None' | 'all' | FactionId[]; // Player |