File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ declare namespace CssMinimizerPlugin {
6868 cssoMinify ,
6969 cleanCssMinify ,
7070 esbuildMinify ,
71+ parcelCssMinify ,
7172 Schema ,
7273 Compiler ,
7374 Compilation ,
@@ -128,6 +129,7 @@ import { cssnanoMinify } from "./utils";
128129import { cssoMinify } from "./utils" ;
129130import { cleanCssMinify } from "./utils" ;
130131import { esbuildMinify } from "./utils" ;
132+ import { parcelCssMinify } from "./utils" ;
131133type Schema = import ( "schema-utils/declarations/validate" ) . Schema ;
132134type Compilation = import ( "webpack" ) . Compilation ;
133135type WebpackError = import ( "webpack" ) . WebpackError ;
Original file line number Diff line number Diff line change @@ -62,3 +62,14 @@ export function esbuildMinify(
6262 sourceMap : RawSourceMap | undefined ,
6363 minimizerOptions : CustomOptions
6464) : Promise < MinimizedResult > ;
65+ /**
66+ * @param {Input } input
67+ * @param {RawSourceMap | undefined } sourceMap
68+ * @param {CustomOptions } minimizerOptions
69+ * @return {Promise<MinimizedResult> }
70+ */
71+ export function parcelCssMinify (
72+ input : Input ,
73+ sourceMap : RawSourceMap | undefined ,
74+ minimizerOptions : CustomOptions
75+ ) : Promise < MinimizedResult > ;
You can’t perform that action at this time.
0 commit comments