@unocss/core 0.52.6 → 0.52.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.
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -317,6 +317,13 @@ interface RuleMeta {
|
|
|
317
317
|
* @default false
|
|
318
318
|
*/
|
|
319
319
|
internal?: boolean;
|
|
320
|
+
/**
|
|
321
|
+
* Store the hash of the rule boy
|
|
322
|
+
*
|
|
323
|
+
* @internal
|
|
324
|
+
* @private
|
|
325
|
+
*/
|
|
326
|
+
__hash?: string;
|
|
320
327
|
}
|
|
321
328
|
type CSSValue = CSSObject | CSSEntries;
|
|
322
329
|
type CSSValues = CSSValue | CSSValue[];
|
package/dist/index.mjs
CHANGED