Skip to main content
Version: v1

TSTNode Interface

Signature

export interface TSTNode<T>

Type Parameters

ParameterDescription
T

Properties

PropertyModifiersTypeDescription
cstring
leftoptionalTSTNode<T>
midoptionalTSTNode<T>
rightoptionalTSTNode<T>
valoptionalT

Property Details

c

Signature

c: string;

Type: string

left

Signature

left?: TSTNode<T>;

Type: TSTNode<T>

mid

Signature

mid?: TSTNode<T>;

Type: TSTNode<T>

right

Signature

right?: TSTNode<T>;

Type: TSTNode<T>

val

Signature

val?: T;

Type: T