assassin-bug/framework/asset-manager/queue.d.ts

9 lines
187 B
TypeScript
Raw Permalink Normal View History

2022-11-26 01:22:02 +00:00
export declare class Queue {
private items;
constructor();
add(file: string): string[];
remove(file: string): string[];
pop(): string;
length(): number;
}