@knighted/css 1.0.0-rc.6 → 1.0.0-rc.7

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.
@@ -20,10 +20,14 @@ declare module '*?knighted-css&combined' {
20
20
  export const knightedCss: string
21
21
  }
22
22
 
23
- declare module '*?knighted-css&combined&named-only*' {
23
+ declare module '*?knighted-css&combined&named-only' {
24
+ const combined: KnightedCssCombinedModule<Record<string, unknown>>
25
+ export default combined
24
26
  export const knightedCss: string
25
27
  }
26
28
 
27
- declare module '*?knighted-css&combined&no-default*' {
29
+ declare module '*?knighted-css&combined&no-default' {
30
+ const combined: KnightedCssCombinedModule<Record<string, unknown>>
31
+ export default combined
28
32
  export const knightedCss: string
29
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knighted/css",
3
- "version": "1.0.0-rc.6",
3
+ "version": "1.0.0-rc.7",
4
4
  "description": "A build-time utility that traverses JavaScript/TypeScript module dependency graphs to extract, compile, and optimize all imported CSS into a single, in-memory string.",
5
5
  "type": "module",
6
6
  "main": "./dist/css.js",