UNPKG

css-mangle-webpack-plugin

Version:

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

13 lines (11 loc) 296 B
import { CSSMangleReserved } from "../types"; export interface ManglerContextOptions { reversed: CSSMangleReserved; canUndeclared: boolean, } export class ManglerContext<T> { constructor( public options: ManglerContextOptions, public parent: T ) {} }