Initial commit

This commit is contained in:
2026-04-15 17:08:39 +02:00
parent ae164c47a8
commit 47fd1c2b7a
1819 changed files with 685388 additions and 0 deletions

10
node_modules/tinyqueue/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export declare type Comparator<T> = (a: T, b: T) => number;
export default class TinyQueue<T> {
public data : T[];
public length : number;
constructor (items? : T[], compare? : Comparator<T>);
peek () : T | undefined;
pop () : T | undefined;
push (item: T) : void;
}