mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
// Type definitions for watchpack 1.1
|
|
// Project: https://github.com/webpack/watchpack
|
|
// Definitions by: e-cloud <https://github.com/e-cloud>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
/// <reference types="node" />
|
|
|
|
import { EventEmitter } from 'events';
|
|
import Watcher = require('./Watcher');
|
|
|
|
declare class Watchpack extends EventEmitter {
|
|
aggregatedChanges: string[];
|
|
aggregateTimeout: NodeJS.Timer;
|
|
dirWatchers: Watcher[];
|
|
fileWatchers: Watcher[];
|
|
mtimes: {
|
|
[path: string]: number;
|
|
};
|
|
options: Watchpack.WatchOptions;
|
|
paused: boolean;
|
|
watcherOptions: Watchpack.WatcherOptions;
|
|
|
|
constructor(options: Watchpack.WatchOptions);
|
|
|
|
watch(files: string[], directories: string[], startTime?: number): void;
|
|
|
|
close(): void;
|
|
|
|
pause(): void;
|
|
|
|
getTimes(): {
|
|
[path: string]: number;
|
|
};
|
|
|
|
_fileWatcher(file: string, watcher: Watcher): Watcher;
|
|
|
|
_dirWatcher(item: string, watcher: Watcher): Watcher;
|
|
|
|
_onChange(item: string, mtime: number, file?: string): void;
|
|
|
|
_onTimeout(): void;
|
|
}
|
|
|
|
declare namespace Watchpack {
|
|
interface WatcherOptions {
|
|
ignored?: string[] | string | RegExp | ((path: string) => boolean);
|
|
poll?: boolean | number;
|
|
}
|
|
interface WatchOptions extends WatcherOptions {
|
|
aggregateTimeout?: number;
|
|
}
|
|
}
|
|
|
|
export = Watchpack;
|