DefinitelyTyped/types/generate-json-webpack-plugin/index.d.ts
2018-06-01 18:53:23 +01:00

14 lines
530 B
TypeScript

// Type definitions for generate-json-webpack-plugin 0.3
// Project: https://github.com/elliottsj/generate-json-webpack-plugin
// Definitions by: Ryan Clark <https://github.com/rynclark>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { Plugin } from 'webpack';
export = GenerateJsonWebpackPlugin;
declare class GenerateJsonWebpackPlugin extends Plugin {
constructor(fileName: string, value: object, replacer?: (key: string, value: any) => any, space?: string | number);
}