@unocss/core 0.45.1 → 0.45.3
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/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ declare function clone<T>(val: T): T;
|
|
|
100
100
|
declare function isStaticRule(rule: Rule): rule is StaticRule;
|
|
101
101
|
declare function isStaticShortcut(sc: Shortcut): sc is StaticShortcut;
|
|
102
102
|
|
|
103
|
-
declare function toArray<T>(value?: T |
|
|
103
|
+
declare function toArray<T>(value?: T | T[]): T[];
|
|
104
104
|
declare function uniq<T>(value: T[]): T[];
|
|
105
105
|
declare function mergeSet<T>(target: Set<T>, append: Set<T>): Set<T>;
|
|
106
106
|
declare function isString(s: any): s is string;
|
package/dist/index.mjs
CHANGED