Files
huishou/node_modules/licia/Semaphore.d.ts
T
2026-07-27 13:37:48 +08:00

8 lines
136 B
TypeScript

declare class Semaphore {
constructor(counter?: number);
wait(fn: () => void): void;
signal(): void;
}
export = Semaphore;