UNPKG
st-store-pinia
Version:
latest (0.0.1)
0.0.1
Small Tail Store Pinia —— Small Tail 基于 Pinia 的与状态管理相关的代码库
st-store-pinia
/
es
/
index.d.ts
6 lines
(5 loc)
•
151 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
const
useStateMixin
: <T>
(
dataDefault
: T
) =>
{
data
:
import
(
'vue'
).
Ref
<T>;
getData
:
() =>
T;
setData
:
(
value
: T
) =>
void
; };