mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
530 B
TypeScript
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);
|
|
}
|