Skip to content

Commit 6e3d923

Browse files
committed
0.0.7
1 parent 4f5c59f commit 6e3d923

11 files changed

Lines changed: 1260 additions & 146 deletions

benchmarks/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

benchmarks/index.js

Lines changed: 163 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

benchmarks/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

imports/multidirectional.d.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
export declare const insertNode: (type_id: number, dir: string, idType?: string) => Promise<any>;
2+
export declare const insertNodes: (nodes: any) => Promise<any>;
3+
export declare const insertLink: (fromId: number, toId: number, type_id: number, dir: string, idType?: string) => Promise<any>;
4+
export declare const clear: (type_id: number, idType?: string) => Promise<void>;
5+
export declare const deleteNode: (id: number, idType?: string) => Promise<any>;
6+
export declare const findNoParent: (notId: number, type_id: number, idType?: string) => Promise<{
7+
nodes: any;
8+
}>;
9+
export declare const countMp: () => Promise<any>;
10+
export declare let type_id: any;
11+
export declare const beforeAllHandler: () => Promise<void>;
12+
export declare const prepare: () => Promise<any>;
13+
export declare const testPlus15: (needCheck?: boolean) => () => Promise<void>;
14+
export declare const testMinus15: (needCheck?: boolean) => () => Promise<void>;
15+
export declare const testRecursive: (needCheck?: boolean) => () => Promise<void>;
16+
export declare const testRecursiveSameRoot: (needCheck?: boolean) => () => Promise<void>;
17+
export declare const testSeparation1: (needCheck?: boolean) => () => Promise<void>;
18+
export declare const testSeparation2: (needCheck?: boolean) => () => Promise<void>;

0 commit comments

Comments
 (0)