@unocss/core 0.39.0 → 0.39.1
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 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -574,6 +574,7 @@ interface UnocssPluginContext<Config extends UserConfig = UserConfig> {
|
|
|
574
574
|
extract: (code: string, id?: string) => Promise<void>;
|
|
575
575
|
reloadConfig: () => Promise<LoadConfigResult<Config>>;
|
|
576
576
|
getConfig: () => Promise<Config>;
|
|
577
|
+
onReload: (fn: () => void) => void;
|
|
577
578
|
invalidate: () => void;
|
|
578
579
|
onInvalidate: (fn: () => void) => void;
|
|
579
580
|
root: string;
|
package/dist/index.mjs
CHANGED