mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
Isolated type removed
This commit is contained in:
parent
422c24cc16
commit
13059971a8
|
@ -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>[];
|
Loading…
Reference in a new issue