UNPKG

@shopware-ag/meteor-admin-sdk

Version:

The Meteor SDK for the Shopware Administration.

11 lines (10 loc) 270 B
import type { UnwrapRef } from 'vue'; /** * * @param key - Shared state key * @param initalValue - Initial value * @returns */ export declare function useSharedState<INITIAL_VALUE>(key: string, initalValue: INITIAL_VALUE): { value: UnwrapRef<INITIAL_VALUE>; };