Isolated type removed

This commit is contained in:
Revone 2023-08-18 22:51:45 +08:00
parent 422c24cc16
commit 13059971a8

View file

@ -6,10 +6,4 @@ export type DFSOrderPattern = 'in' | 'pre' | 'post';
export type BinaryTreeNodeId = number;
export type BinaryTreeDeleted<T> = { deleted: BinaryTreeNode<T> | null | undefined, needBalanced: BinaryTreeNode<T> | null };
export type ResultByProperty<T> = T | BinaryTreeNode<T> | number | BinaryTreeNodeId;
export type ResultsByProperty<T> = ResultByProperty<T>[];
export interface BinaryTreeNodeObj<T> {
id: BinaryTreeNodeId;
val: T;
count?: number;
}
export type ResultsByProperty<T> = ResultByProperty<T>[];