UNPKG

@shopware-ag/meteor-admin-sdk

Version:

The Meteor SDK for the Shopware Administration.

7 lines (6 loc) 282 B
import type { UnwrapRef, Ref, WritableComputedRef } from 'vue'; export declare function useAsyncSharedState<INITIAL_VALUE>(key: string, initialValue: INITIAL_VALUE): { state: WritableComputedRef<UnwrapRef<INITIAL_VALUE>>; isReady: Ref<boolean>; ready: Promise<void>; };