1.1.3 • Published 6 months ago

@types/webpack-watch-files-plugin v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/webpack-watch-files-plugin

Summary

This package contains type definitions for webpack-watch-files-plugin (https://github.com/Fridus/webpack-watch-files-plugin).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-watch-files-plugin.

index.d.ts

// Type definitions for webpack-watch-files-plugin 1.1
// Project: https://github.com/Fridus/webpack-watch-files-plugin
// Definitions by: Ben Grynhaus <https://github.com/bengry>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node" />
import { Compiler } from 'webpack';

interface Options {
    /**
     * Array of patterns.
     * @default []
     */
    files?: readonly string[];
    /**
     * List files found.
     * @default false
     */
    verbose?: boolean;
}

declare class WebpackWatchFilesPlugin {
    constructor(options?: Options);

    apply(compiler: Compiler): void;
}

export = WebpackWatchFilesPlugin;

Additional Details

Credits

These definitions were written by Ben Grynhaus.

1.1.1

8 months ago

1.1.3

6 months ago

1.1.2

7 months ago

1.1.0

3 years ago