@anzusystems/common-admin 1.47.0-beta.dev-1778753795 → 1.47.0-beta.dev-1778753796
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/common-admin.d.ts +2 -2
- package/dist/common-admin.js +698 -701
- package/dist/common-admin.js.map +1 -1
- package/package.json +1 -1
package/dist/common-admin.d.ts
CHANGED
|
@@ -9288,8 +9288,8 @@ export declare function useBaseUserFactory(): {
|
|
|
9288
9288
|
export declare function useCachedItem<T extends {
|
|
9289
9289
|
_loaded?: boolean;
|
|
9290
9290
|
}>(getter: () => T | undefined): {
|
|
9291
|
-
cached:
|
|
9292
|
-
loaded:
|
|
9291
|
+
cached: ComputedRef<T | undefined>;
|
|
9292
|
+
loaded: ComputedRef<boolean>;
|
|
9293
9293
|
};
|
|
9294
9294
|
|
|
9295
9295
|
declare type UseCachedType = () => {
|