@plumeria/core 11.0.0 → 11.0.2

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.
Files changed (2) hide show
  1. package/lib/types.d.ts +1 -1
  2. package/package.json +2 -1
package/lib/types.d.ts CHANGED
@@ -34,7 +34,7 @@ type CSSProperties =
34
34
  | QuerySelector
35
35
  | CSSVariableProperty;
36
36
 
37
- type CreateStyleValue = CSSProperties | ((...args: never) => CSSProperties);
37
+ type CreateStyleValue = CSSProperties | ((...args: any[]) => CSSProperties);
38
38
 
39
39
  type CreateReturnType<T> = {
40
40
  [K in keyof T]: T[K] extends (...args: infer A) => infer R
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plumeria/core",
3
- "version": "11.0.0",
3
+ "version": "11.0.2",
4
4
  "description": "A zero-cost abstraction for CSS.",
5
5
  "author": "Refirst 11",
6
6
  "license": "MIT",
@@ -29,6 +29,7 @@
29
29
  "import": "./lib/css.js"
30
30
  }
31
31
  },
32
+ "types": "./lib/css.d.ts",
32
33
  "imports": {
33
34
  "#types": "./lib/types.d.ts"
34
35
  },