Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts
2022-12-27 12:05:56 +01:00

8 lines
334 B
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
export declare type SubresourceIntegrityAlgorithm = 'sha256' | 'sha384' | 'sha512';
export declare class SubresourceIntegrityPlugin {
private readonly algorithm;
constructor(algorithm: SubresourceIntegrityAlgorithm);
apply(compiler: webpack.Compiler): void;
}