# Installation
> `npm install --save @types/sw-precache-webpack-plugin`

# Summary
This package contains type definitions for sw-precache-webpack-plugin (https://github.com/goldhand/sw-precache-webpack-plugin#readme).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sw-precache-webpack-plugin.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/sw-precache-webpack-plugin/index.d.ts)
````ts
import { Options as SwPrecacheOptions } from "sw-precache";
import { Plugin } from "webpack";

// workaround to override parent types
interface _Options extends SwPrecacheOptions {
    importScripts?: any;
}

declare namespace SWPrecacheWebpackPlugin {
    interface Options extends _Options {
        filename?: string | undefined;
        filepath?: string | undefined;
        staticFileGlobsIgnorePatterns?: RegExp[] | undefined;
        mergeStaticsConfig?: boolean | undefined;
        minify?: boolean | undefined;

        // override sw-precache options
        importScripts?:
            | Array<
                | string
                | {
                    chunkName?: string | undefined;
                    filename?: string | undefined;
                }
            >
            | undefined;
    }
}

declare class SWPrecacheWebpackPlugin extends Plugin {
    constructor(options?: SWPrecacheWebpackPlugin.Options);
}

export = SWPrecacheWebpackPlugin;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 15:11:36 GMT
 * Dependencies: [@types/sw-precache](https://npmjs.com/package/@types/sw-precache), [@types/webpack](https://npmjs.com/package/@types/webpack)

# Credits
These definitions were written by [JounQin](https://github.com/JounQin).
