blueshell
Version:
A Behavior Tree implementation in modern Javascript
10 lines (9 loc) • 383 B
TypeScript
export { TreePublisher, TreeNonPublisher } from './TreePublisher';
export { INodeManager, NodeManager } from './nodeManager';
import { toString, toConsole, toDotString, toDotConsole } from './renderTree';
export declare const renderTree: {
toString: typeof toString;
toConsole: typeof toConsole;
toDotString: typeof toDotString;
toDotConsole: typeof toDotConsole;
};