UNPKG

@flatten-js/interval-tree

Version:
10 lines 295 B
/** * 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