From b80620214da6531a300efffce464775912e27b8e Mon Sep 17 00:00:00 2001 From: Sachin Kumar Date: Mon, 1 Jul 2024 15:06:45 +0530 Subject: [PATCH] chore: update types --- types/index.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 59dec7c..5aba3ba 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1,4 +1,3 @@ -/// export = CompressionPlugin; /** @typedef {import("schema-utils/declarations/validate").Schema} Schema */ /** @typedef {import("webpack").Compiler} Compiler */ @@ -132,9 +131,9 @@ declare namespace CompressionPlugin { InternalPluginOptions, }; } -type WebpackPluginInstance = import("webpack").WebpackPluginInstance; type Schema = import("schema-utils/declarations/validate").Schema; type Compiler = import("webpack").Compiler; +type WebpackPluginInstance = import("webpack").WebpackPluginInstance; type Compilation = import("webpack").Compilation; type Source = import("webpack").sources.Source; type Asset = import("webpack").Asset;