remove node_modules and .gitignore them

This commit is contained in:
2023-11-24 14:40:32 -05:00
parent 5f6e638903
commit a74d7b91b8
8963 changed files with 1 additions and 874175 deletions
-21
View File
@@ -1,21 +0,0 @@
/**
* @packageDocumentation
* @module std.internal
*/
import { Color } from "./Color";
/**
* Node of {@link XTree}
*
* @author Jeongho Nam - https://github.com/samchon
*/
export declare class XTreeNode<T> {
parent: XTreeNode<T> | null;
left: XTreeNode<T> | null;
right: XTreeNode<T> | null;
value: T;
color: Color;
constructor(value: T, color: Color);
get grand(): XTreeNode<T> | null;
get sibling(): XTreeNode<T> | null;
get uncle(): XTreeNode<T> | null;
}