@types/sw-precache-webpack-plugin
TypeScript icon, indicating that this package has built-in type declarations

0.11.5 • Public • Published

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

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

Credits

These definitions were written by JounQin.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/sw-precache-webpack-plugin

Weekly Downloads

1,409

Version

0.11.5

License

MIT

Unpacked Size

4.82 kB

Total Files

5

Last publish

Collaborators

  • types