UNPKG

@magic-xpa/utils

Version:

magic utils package

10 lines (9 loc) 187 B
export declare class Queue<T> { private _queueVec; constructor(); get(): any; put(obj: T): void; clear(): void; isEmpty(): boolean; Size(): number; }