1.0.4 • Published 6 months ago

@types/lockfile v1.0.4

Weekly downloads
67,512
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/lockfile

Summary

This package contains type definitions for lockfile (https://github.com/isaacs/lockfile).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lockfile/v0.

index.d.ts

// Type definitions for lockfile 0.4
// Project: https://github.com/isaacs/lockfile
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

export interface Options {
    wait?: number | undefined;
    stale?: number | undefined;
    retries?: number | undefined;
    retryWait?: number | undefined;
}

export function lock(path: string, opts: Options, callback: (err: Error) => void): void;
export function lock(path: string, callback: (err: Error) => void): void;
export function lockSync(path: string, opts: Options): void;

export function unlock(path: string, callback: (err: Error) => void): void;
export function unlockSync(path: string): void;

export function check(path: string, opts: Options, callback: (err: Error, isLocked: boolean) => void): void;
export function check(path: string, callback: (err: Error, isLocked: boolean) => void): void;
export function checkSync(path: string, opts: Options): boolean;

Additional Details

  • Last updated: Tue, 06 Jul 2021 22:02:44 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Bart van der Schoor.