Sha256: bc8e98947bd3b0762012af303fbe01d8ae4542d611aa6308935517ea82e48411

Contents?: true

Size: 607 Bytes

Versions: 5

Compression:

Stored size: 607 Bytes

Contents

/// <reference types="node" />
import * as fs from 'fs';
import { WatchOptions, FSWatcher } from 'chokidar';
import { Task } from './index';
export declare function addTask(id: string, task: Task, chokidarOptions: WatchOptions, chokidarOptionsHash: string): void;
export declare function deleteTask(id: string, target: Task, chokidarOptionsHash: string): void;
export default class FileWatcher {
    fileExists: boolean;
    fsWatcher: FSWatcher | fs.FSWatcher;
    tasks: Set<Task>;
    constructor(id: string, chokidarOptions: WatchOptions, dispose: () => void);
    close(): void;
    trigger(): void;
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jass-0.9.5 vendor/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts
jass-0.9.4 vendor/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts
jass-0.9.3 vendor/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts
condenser-0.0.4 lib/condenser/processors/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts
jass-0.9.1 vendor/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts