@unocss/core 0.31.9 → 0.31.13
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 +3 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -373,7 +373,7 @@ interface ConfigBase<Theme extends {} = {}> {
|
|
|
373
373
|
*/
|
|
374
374
|
extendTheme?: Arrayable<ThemeExtender<Theme>>;
|
|
375
375
|
/**
|
|
376
|
-
*
|
|
376
|
+
* Additional options for auto complete
|
|
377
377
|
*/
|
|
378
378
|
autocomplete?: {
|
|
379
379
|
/**
|
|
@@ -491,6 +491,8 @@ interface UnocssPluginContext<Config extends UserConfig = UserConfig> {
|
|
|
491
491
|
getConfig: () => Promise<Config>;
|
|
492
492
|
invalidate: () => void;
|
|
493
493
|
onInvalidate: (fn: () => void) => void;
|
|
494
|
+
root: string;
|
|
495
|
+
updateRoot: (root: string) => Promise<LoadConfigResult<Config>>;
|
|
494
496
|
}
|
|
495
497
|
interface SourceMap {
|
|
496
498
|
file?: string;
|
package/dist/index.mjs
CHANGED