@flatten-js/interval-tree
Version:
Interval search tree with TypeScript support
10 lines • 295 B
TypeScript
/**
* Created by Alex Bol on 3/28/2017.
*/
/**
* Red-Black Tree color constants
*/
export declare const RB_TREE_COLOR_RED = 1;
export declare const RB_TREE_COLOR_BLACK = 0;
export type NodeColor = typeof RB_TREE_COLOR_RED | typeof RB_TREE_COLOR_BLACK;
//# sourceMappingURL=constants.d.ts.map