bpms_site/.svn/pristine/6a/6a46c870c827a06929f1c0964acc9bd464b9837e.svn-base
2025-11-02 16:38:49 +03:30

8 lines
326 B
Plaintext

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