Init
This commit is contained in:
11
node_modules/sweet-collections/dist/queue/Queue.d.ts
generated
vendored
Normal file
11
node_modules/sweet-collections/dist/queue/Queue.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
export declare class Queue<T> {
|
||||
private head?;
|
||||
private tail?;
|
||||
private _size;
|
||||
push(...values: T[]): this;
|
||||
pop(_default?: T): T | undefined;
|
||||
peek(): T | undefined;
|
||||
isEmpty(): boolean;
|
||||
clear(): void;
|
||||
get size(): number;
|
||||
}
|
||||
Reference in New Issue
Block a user