puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
17 lines • 467 B
TypeScript
import { disposeSymbol } from './disposable.js';
/**
* @internal
*/
export declare class Mutex {
#private;
static Guard: {
new (mutex: Mutex, onRelease?: () => void): {
"__#56474@#mutex": Mutex;
"__#56474@#onRelease"?: () => void;
[Symbol.dispose](): void;
};
};
acquire(onRelease?: () => void): Promise<InstanceType<typeof Mutex.Guard>>;
release(): void;
}
//# sourceMappingURL=Mutex.d.ts.map