Options
All
  • Public
  • Public/Protected
  • All
Menu

blueshell

Index

References

Renames and re-exports Action
Renames and re-exports rc

Type Aliases

ResultCode: "SUCCESS" | "FAILURE" | "RUNNING" | "ERROR"

Variables

rc: { [ K in ResultCode]: ResultCode } = ...

5/30/16

author

Joshua Chaitin-Pollak

renderTree: { toConsole: (<S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number) => void); toDotConsole: (<S, E>(tree: BaseNode<S, E>, state?: S) => void); toDotString: (<S, E>(tree: BaseNode<S, E>, state?: S) => string); toString: (<S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number) => string) } = ...

Type declaration

  • toConsole: (<S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number) => void)
      • <S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number): void
      • Type Parameters

        Parameters

        • tree: BaseNode<S, E>
        • Optional state: S
        • contextDepth: number = Number.MAX_SAFE_INTEGER

        Returns void

  • toDotConsole: (<S, E>(tree: BaseNode<S, E>, state?: S) => void)
  • toDotString: (<S, E>(tree: BaseNode<S, E>, state?: S) => string)
  • toString: (<S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number) => string)
      • <S, E>(tree: BaseNode<S, E>, state?: S, contextDepth?: number): string
      • Type Parameters

        Parameters

        • tree: BaseNode<S, E>
        • Optional state: S
        • contextDepth: number = Number.MAX_SAFE_INTEGER

        Returns string

Functions

  • isParentNode<S, E>(node: any): node is ParentNode<S, E>