@types/lodash-webpack-plugin
Version:
TypeScript definitions for lodash-webpack-plugin
55 lines (45 loc) • 1.95 kB
Markdown
# Installation
> `npm install --save @types/lodash-webpack-plugin`
# Summary
This package contains type definitions for lodash-webpack-plugin (https://github.com/lodash/lodash-webpack-plugin#readme).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash-webpack-plugin.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lodash-webpack-plugin/index.d.ts)
````ts
// Type definitions for lodash-webpack-plugin 0.11
// Project: https://github.com/lodash/lodash-webpack-plugin#readme
// Definitions by: Benjamin Lim <https://github.com/bumbleblym>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7
import { Plugin } from 'webpack';
export = LodashModuleReplacementPlugin;
declare class LodashModuleReplacementPlugin extends Plugin {
constructor(options?: LodashModuleReplacementPlugin.Options);
}
declare namespace LodashModuleReplacementPlugin {
interface Options {
caching?: boolean | undefined;
chaining?: boolean | undefined;
cloning?: boolean | undefined;
coercions?: boolean | undefined;
collections?: boolean | undefined;
currying?: boolean | undefined;
deburring?: boolean | undefined;
exotics?: boolean | undefined;
flattening?: boolean | undefined;
guards?: boolean | undefined;
memoizing?: boolean | undefined;
metadata?: boolean | undefined;
paths?: boolean | undefined;
placeholders?: boolean | undefined;
shorthands?: boolean | undefined;
unicode?: boolean | undefined;
}
}
````
### Additional Details
* Last updated: Thu, 08 Jul 2021 16:23:48 GMT
* Dependencies: [@types/webpack](https://npmjs.com/package/@types/webpack)
* Global values: none
# Credits
These definitions were written by [Benjamin Lim](https://github.com/bumbleblym).