// Type definitions for lockfile 1.0 // Project: https://github.com/npm/lockfile // Definitions by: Bart van der Schoor // BendingBender // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export interface Options { wait?: number; pollPeriod?: number; stale?: number; retries?: number; retryWait?: number; } export function lock(path: string, opts: Options, callback: (err: Error | null) => void): void; export function lock(path: string, callback: (err: Error | null) => void): void; export function lockSync(path: string, opts?: Options): void; export function unlock(path: string, callback: (err: Error | null) => void): void; export function unlockSync(path: string): void; export function check(path: string, opts: Options, callback: (err: Error | null, isLocked: boolean) => void): void; export function check(path: string, callback: (err: Error | null, isLocked: boolean) => void): void; export function checkSync(path: string, opts?: Options): boolean;