webcompiler
Version:
Lint, type-check, compile, package and gzip JavaScript (ES6 + Flow static types + JSX), for the browser as well as NodeJS; lint, compile, auto-prefix, minify and gzip SASS.
14 lines (10 loc) • 370 B
JavaScript
/* @flow */
/* eslint-disable no-unused-vars */
import type {ObjectOrErrorCallback} from '../src/typedef';
import EventEmitter from 'events';
declare module 'fb-watchman' {
declare class Client extends EventEmitter {
capabilityCheck(config: Object, callback: (error: ?Error) => void): void;
command(cmd: any[], callback: ObjectOrErrorCallback): void;
}
}