# Installation
> `npm install --save @types/css.escape`

# Summary
This package contains type definitions for css.escape (https://github.com/mathiasbynens/CSS.escape).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/css.escape.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/css.escape/index.d.ts)
````ts
declare global {
    const CSS: {
        /**
         * A robust polyfill for the `CSS.escape` utility method as defined in
         * [CSSOM](https://drafts.csswg.org/cssom/#the-css.escape()-method).
         */
        escape(css: string): string;
    };
}

export = CSS.escape;

````

### Additional Details
 * Last updated: Mon, 06 Nov 2023 22:41:05 GMT
 * Dependencies: none

# Credits
These definitions were written by [Mihnea Stoian](https://github.com/mihnea-s).
