declarations
Version:
[](https://www.npmjs.com/package/declarations)
52 lines (39 loc) • 2.15 kB
TypeScript
// Type definitions for watchify v3.7.0
// Project: https://github.com/substack/watchify
// Definitions by: TeamworkGuy2 <https://github.com/TeamworkGuy2>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../browserify/browserify.d.ts" />
declare module 'watchify' {
var Watchify: Watchify.Constructor;
/** Watch mode for browserify builds.
* Update any source file and your browserify bundle will be recompiled on the spot
*/
module Watchify {
/** Watch mode for browserify builds.
* Update any source file and your browserify bundle will be recompiled on the spot
*/
export interface Constructor {
args: { cache: any; packageCache: any; };
<T extends Browserify.BrowserifyObject>(b: T, opts?: Watchify.Options): T;
(b: Browserify.BrowserifyObject, opts?: Watchify.Options): Browserify.BrowserifyObject;
}
export interface Options {
/** The amount of time in milliseconds to wait before emitting an "update" event after a change.
* Default: 100
*/
delay?: number;
/** Ignores monitoring files for changes. If set to true, then ** /node_modules/ ** will be ignored. For other possible values see Chokidar's documentation on "ignored"
* Also see anymatch package: https://github.com/es128/anymatch#usage
*/
ignoreWatch?: boolean | (string | RegExp | ((...values: any[]) => boolean) | (string | RegExp | ((...values: any[]) => boolean))[]);
/** Enables polling to monitor for changes. If set to true, then a polling interval of 100 ms is used.
* If set to a number, then that amount of milliseconds will be the polling interval. For more info see
* Chokidar's documentation on "usePolling" and "interval".
* This option is useful if you're watching an NFS volume
* Also see chokidar package: https://github.com/paulmillr/chokidar#path-filtering
*/
poll?: number;
}
}
export = Watchify;
}