webpack-config.d.ts 254 B

123456789
  1. // Type definitions for webpack-config
  2. // Project: https://github.com/mdreizin/webpack-config
  3. // Definitions by: Steven Silvester <https://github.com/blink1073>
  4. declare module 'webpack-config' {
  5. export class Config {
  6. merge(value: any): any;
  7. }
  8. }