UNPKG
@shopware-ag/meteor-admin-sdk
Version:
alpha (5.5.0-iap.8)
latest (6.9.1)
6.9.1
6.9.0
6.8.0
6.7.4
6.7.3
6.7.2
6.7.1
6.7.0
6.6.0
6.5.1
6.5.0
6.4.0
6.3.0
6.2.1
6.2.0
6.1.0
6.0.3
6.0.2
6.0.1
6.0.0
5.9.2
5.9.1
5.9.0
5.8.5
5.8.4
5.8.3
5.8.2
5.8.1
5.8.0
5.7.8
5.7.7
5.7.6
5.7.5
5.7.4
5.7.3
5.7.2
5.7.1
5.7.0
5.6.2
5.6.1
5.6.0
5.5.1
5.5.0
5.5.0-iap.8
5.5.0-iap.7
5.5.0-iap.6
5.5.0-iap.5
5.5.0-iap.4
5.4.6
5.4.5
5.4.4
5.4.4-iap.3
5.4.4-iap.1
5.4.4-iap.0
5.4.3
5.4.2
5.4.1
5.4.0
5.3.1
5.3.0
5.2.1
5.2.0
5.1.1
5.1.0
5.0.2
5.0.1
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.0.17
3.0.16
The Meteor SDK for the Shopware Administration.
github.com/shopware/meteor
shopware/meteor
@shopware-ag/meteor-admin-sdk
/
umd
/
data
/
composables
/
useSharedState.d.ts
11 lines
(10 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
>; };