معرفی شرکت ها


@types/proper-lockfile-4.1.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

TypeScript definitions for proper-lockfile
ویژگی مقدار
سیستم عامل -
نام فایل @types/proper-lockfile-4.1.2
نام @types/proper-lockfile
نسخه کتابخانه 4.1.2
نگهدارنده ['types']
ایمیل نگهدارنده ['ts-npm-types@microsoft.com']
نویسنده -
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/DefinitelyTyped/DefinitelyTyped.git
آدرس اینترنتی https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/proper-lockfile
مجوز MIT
# Installation > `npm install --save @types/proper-lockfile` # Summary This package contains type definitions for proper-lockfile (https://github.com/moxystudio/node-proper-lockfile). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/proper-lockfile. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/proper-lockfile/index.d.ts) ````ts // Type definitions for proper-lockfile 4.1 // Project: https://github.com/moxystudio/node-proper-lockfile // Definitions by: Nikita Volodin <https://github.com/qlonik> // Linus Unnebäck <https://github.com/LinusU> // ulrichb <https://github.com/ulrichb> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 import { OperationOptions } from "retry"; export interface LockOptions { stale?: number | undefined; // default: 10000 update?: number | undefined; // default: stale/2 retries?: number | OperationOptions | undefined; // default: 0 realpath?: boolean | undefined; // default: true fs?: any; // default: graceful-fs onCompromised?: ((err: Error) => any) | undefined; // default: (err) => throw err lockfilePath?: string | undefined; // default: `${file}.lock` } export interface UnlockOptions { realpath?: boolean | undefined; // default: true fs?: any; // default: graceful-fs lockfilePath?: string | undefined; // default: `${file}.lock` } export interface CheckOptions { stale?: number | undefined; // default: 10000 realpath?: boolean | undefined; // default: true fs?: any; // default: graceful-fs lockfilePath?: string | undefined; // default: `${file}.lock` } export function lock(file: string, options?: LockOptions): Promise<() => Promise<void>>; export function unlock(file: string, options?: UnlockOptions): Promise<void>; export function check(file: string, options?: CheckOptions): Promise<boolean>; export function lockSync(file: string, options?: LockOptions): () => void; export function unlockSync(file: string, options?: UnlockOptions): void; export function checkSync(file: string, options?: CheckOptions): boolean; ```` ### Additional Details * Last updated: Wed, 07 Jul 2021 17:02:37 GMT * Dependencies: [@types/retry](https://npmjs.com/package/@types/retry) * Global values: none # Credits These definitions were written by [Nikita Volodin](https://github.com/qlonik), [Linus Unnebäck](https://github.com/LinusU), and [ulrichb](https://github.com/ulrichb).


نیازمندی

مقدار نام
* @types/retry


نحوه نصب


نصب پکیج tgz @types/proper-lockfile-4.1.2:

    npm install @types/proper-lockfile-4.1.2.tgz