@types/uglifycss
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

Installation

npm install --save @types/uglifycss

Summary

This package contains type definitions for uglifycss (https://github.com/fmarcia/UglifyCSS).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uglifycss.

index.d.ts

declare module "uglifycss" {
    namespace UglifyCSS {
        interface UglifyCSSOptions {
            /**
             * Adds a newline (approx.) every n characters; 0 means no newline and is the default value
             */
            maxLineLen?: number | undefined;

            /**
             * eEpands variables; by default, @variables blocks are preserved and var(x)s are not expanded
             */
            expandVars?: boolean | undefined;

            /**
             * Removes newlines within preserved comments; by default, newlines are preserved
             */
            uglyComments?: boolean | undefined;

            /**
             * Preserves newlines within and around preserved comments
             */
            cuteComments?: boolean | undefined;
        }

        /**
         * Uglify a string
         */
        function processString(content: string, options?: UglifyCSSOptions): string;

        /**
         * Uglify one or more files
         */
        function processFiles(filenames: string[], options?: UglifyCSSOptions): string;
    }

    export = UglifyCSS;
}

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:24 GMT
  • Dependencies: none

Credits

These definitions were written by gevik Babakhani.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/uglifycss

Weekly Downloads

1,165

Version

0.0.11

License

MIT

Unpacked Size

4.77 kB

Total Files

5

Last publish

Collaborators

  • types