1 | export = cssesc;
|
2 |
|
3 | declare function cssesc(string: string, options?: Readonly<Partial<cssesc.Options>>): string;
|
4 |
|
5 | declare namespace cssesc {
|
6 | interface Options {
|
7 | escapeEverything: boolean;
|
8 | isIdentifier: boolean;
|
9 | quotes: string;
|
10 | wrap: boolean;
|
11 | }
|
12 |
|
13 | const options: Options;
|
14 |
|
15 | const version: string;
|
16 | }
|