UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

31 lines (23 loc) 857 B
// Type definitions for async-lock // Project: https://github.com/rain1017/async-lock // Definitions by: Elisée MAURER <https://github.com/elisee/> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module "async-lock" { interface AsyncLockDoneCallback { (err?: Error, ret?: any): void; } interface AsyncLockOptions { timeout?: number; maxPending?: number; domainReentrant?: boolean; Promise?: any; } class AsyncLock { constructor(options?: AsyncLockOptions); acquire(key: string|string[], fn: (done: AsyncLockDoneCallback) => any, cb: AsyncLockDoneCallback, opts?: AsyncLockOptions): void; acquire(key: string|string[], fn: (done: AsyncLockDoneCallback) => any, opts?: AsyncLockOptions): PromiseLike<any>; isBusy(): boolean; } namespace AsyncLock {} export = AsyncLock; }