mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
35 lines
913 B
TypeScript
35 lines
913 B
TypeScript
// 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: 2.3
|
|
|
|
import { Plugin } from 'webpack';
|
|
|
|
export = LodashModuleReplacementPlugin;
|
|
|
|
declare class LodashModuleReplacementPlugin extends Plugin {
|
|
constructor(options?: LodashModuleReplacementPlugin.Options);
|
|
}
|
|
|
|
declare namespace LodashModuleReplacementPlugin {
|
|
interface Options {
|
|
caching?: boolean;
|
|
chaining?: boolean;
|
|
cloning?: boolean;
|
|
coercions?: boolean;
|
|
collections?: boolean;
|
|
currying?: boolean;
|
|
deburring?: boolean;
|
|
exotics?: boolean;
|
|
flattening?: boolean;
|
|
guards?: boolean;
|
|
memoizing?: boolean;
|
|
metadata?: boolean;
|
|
paths?: boolean;
|
|
placeholders?: boolean;
|
|
shorthands?: boolean;
|
|
unicode?: boolean;
|
|
}
|
|
}
|