UNPKG

css-mangle-webpack-plugin

Version:

This webpack plugin package is a CSS mangler that globally optimizes and shortens identifier names.

5 lines (4 loc) 278 B
/** Signature for the optional types that is defining identifiers to reserve. */ export type CSSMangleReserved = string[] | RegExp[]; /** Signature for the function that is a builder about renaming identifiers. */ export type ManglerRenameBuilder = (oldName: string) => string;