@stacksjs/ts-css 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +173 -0
- package/LICENSE.md +21 -0
- package/README.md +213 -0
- package/dist/config.d.ts +4 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +7835 -0
- package/dist/optimize/clean/comment.d.ts +2 -0
- package/dist/optimize/clean/declaration.d.ts +2 -0
- package/dist/optimize/clean/index.d.ts +2 -0
- package/dist/optimize/compress/index.d.ts +5 -0
- package/dist/optimize/index.d.ts +13 -0
- package/dist/optimize/index.js +3390 -0
- package/dist/optimize/minify.d.ts +14 -0
- package/dist/optimize/specificity.d.ts +5 -0
- package/dist/parse/clone.d.ts +2 -0
- package/dist/parse/generator.d.ts +2 -0
- package/dist/parse/index.d.ts +58 -0
- package/dist/parse/index.js +2369 -0
- package/dist/parse/list.d.ts +54 -0
- package/dist/parse/parser/index.d.ts +6 -0
- package/dist/parse/tokenizer.d.ts +67 -0
- package/dist/parse/types.d.ts +264 -0
- package/dist/parse/walker.d.ts +55 -0
- package/dist/select/index.d.ts +18 -0
- package/dist/select/index.js +1289 -0
- package/dist/select/types.d.ts +41 -0
- package/dist/types.d.ts +9 -0
- package/dist/what/index.d.ts +20 -0
- package/dist/what/index.js +514 -0
- package/dist/what/parse.d.ts +2 -0
- package/dist/what/stringify.d.ts +2 -0
- package/dist/what/traversal.d.ts +3 -0
- package/dist/what/types.d.ts +66 -0
- package/package.json +123 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { specificity as _specificity } from './specificity';
|
|
2
|
+
export type { MinifyOptions, MinifyResult } from './minify';
|
|
3
|
+
export type { Specificity } from './specificity';
|
|
4
|
+
/** Mirror csso's `syntax` namespace export. */
|
|
5
|
+
export declare const syntax: { specificity: typeof _specificity };
|
|
6
|
+
/**
|
|
7
|
+
* CSS minifier — the API surface that csso users (notably SVGO's
|
|
8
|
+
* `minifyStyles` and `inlineStyles`) depend on.
|
|
9
|
+
*/
|
|
10
|
+
export { dedupeDeclarations, removeComments } from './clean';
|
|
11
|
+
export { compressTree } from './compress';
|
|
12
|
+
export { minify, minifyBlock } from './minify';
|
|
13
|
+
export { specificity, specificityToString } from './specificity';
|