waysact/webpack-subresource-integrity

View on GitHub
webpack-subresource-integrity/etc/webpack-subresource-integrity.api.md

Summary

Maintainability
Test Coverage
## API Report File for "webpack-subresource-integrity"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

```ts

import type { Compiler } from 'webpack';

// @public
export class SubresourceIntegrityPlugin {
    constructor(options?: SubresourceIntegrityPluginOptions);
    // (undocumented)
    apply(compiler: Compiler): void;
}

// @public (undocumented)
export interface SubresourceIntegrityPluginOptions {
    // (undocumented)
    readonly enabled?: "auto" | true | false;
    // (undocumented)
    readonly hashFuncNames?: [string, ...string[]];
    // (undocumented)
    readonly hashLoading?: "eager" | "lazy";
}

// (No @packageDocumentation comment for this package)

```