webpack.d.ts 441 B

123456789101112131415
  1. export namespace webpack {
  2. export type Compiler = any
  3. export type Plugin = any
  4. export type Configuration = any
  5. export type StatsError = any
  6. export type Stats = any
  7. export type MultiCompiler = any
  8. export type EntryObject = any
  9. export type ProgressPlugin = any
  10. export type Compilation = any
  11. export type javascript = any
  12. export type Module = any
  13. export type ModuleGraph = any
  14. export type WebpackPluginInstance = any
  15. }