UNPKG

blueshell

Version:

A Behavior Tree implementation in modern Javascript

6 lines (5 loc) 520 B
import { BlueshellState, BaseNode } from '../models'; export declare function toString<S extends BlueshellState, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number): string; export declare function toConsole<S extends BlueshellState, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number): void; export declare function toDotString<S extends BlueshellState, E>(tree: BaseNode<S, E>, state?: S): string; export declare function toDotConsole<S extends BlueshellState, E>(tree: BaseNode<S, E>, state?: S): void;