Добавлена ДБ
This commit is contained in:
14
node_modules/effect/dist/dts/internal/redBlackTree/node.d.ts
generated
vendored
Normal file
14
node_modules/effect/dist/dts/internal/redBlackTree/node.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export declare namespace Node {
|
||||
type Color = number & {
|
||||
readonly Color: unique symbol;
|
||||
};
|
||||
}
|
||||
export interface Node<out K, out V> {
|
||||
color: Node.Color;
|
||||
key: K;
|
||||
value: V;
|
||||
left: Node<K, V> | undefined;
|
||||
right: Node<K, V> | undefined;
|
||||
count: number;
|
||||
}
|
||||
//# sourceMappingURL=node.d.ts.map
|
||||
Reference in New Issue
Block a user