Latest Threat ResearchGlassWorm Loader Hits Open VSX via Developer Account Compromise.Details
Socket
Book a DemoInstallSign in
Socket

@types/fb-watchman

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/fb-watchman

TypeScript definitions for fb-watchman

Source
npmnpm
Version
2.0.3
Version published
Weekly downloads
170K
0.08%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/fb-watchman

Summary

This package contains type definitions for fb-watchman (https://facebook.github.io/watchman/).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fb-watchman.

index.d.ts

/// <reference types="node" />
import { EventEmitter } from "events";

// Emit the responses to these when they get sent down to us
export type UnilateralTags = "unilateralTags" | "log";

export interface ClientOptions {
    /**
     * Absolute path to the watchman binary.
     * If not provided, the Client locates the binary using the PATH specified
     * by the node child_process's default env.
     */
    watchmanBinaryPath?: string | undefined;
}

export interface Capabilities {
    optional: any[];
    required: any[];
}

export type doneCallback = (error?: Error | null, resp?: any) => any;

export class Client extends EventEmitter {
    constructor(options?: ClientOptions);
    sendNextCommand(): void;
    cancelCommands(why: string): void;
    connect(): void;
    command(args: any, done: doneCallback): void;
    capabilityCheck(
        caps: Capabilities,
        done: doneCallback,
    ): void;
    end(): void;
}

Additional Details

  • Last updated: Wed, 18 Oct 2023 01:17:34 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Wu Haotian.

FAQs

Package last updated on 18 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts