5.0.5 • Published 6 months ago

@types/happypack v5.0.5

Weekly downloads
8,503
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/happypack

Summary

This package contains type definitions for happypack (https://github.com/amireh/happypack).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/happypack.

index.d.ts

// Type definitions for happypack 5.0
// Project: https://github.com/amireh/happypack
// Definitions by: Akash Vishwakarma <https://github.com/akashishu777>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

import { Plugin } from 'webpack';

export = happypack;

declare namespace happypack {
    interface PluginOptions {
        id?: string | undefined;
        threads?: number | undefined;
        loaders: any;
    }
}

declare class happypack extends Plugin {
    constructor(options: happypack.PluginOptions);
}

Additional Details

  • Last updated: Thu, 08 Jul 2021 14:22:46 GMT
  • Dependencies: @types/webpack
  • Global values: none

Credits

These definitions were written by Akash Vishwakarma.