UNPKG
secure-action
Version:
latest (1.0.0)
1.0.0
Secure Action 是一个基于行为的验证码组件,适用于 Vue 3。
github.com/fady-mak/secure-action
fady-mak/secure-action
secure-action
/
lib
/
hooks
/
useSecureActionStore.d.ts
6 lines
(5 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
Ref
}
from
'vue'
;
export
declare
const
useSecureActionStore
:
() =>
{
openPromise
:
Ref
<
Promise
<
boolean
> |
undefined
>;
openResolve
:
Ref
<(
(
value
:
boolean
|
PromiseLike
<
boolean
>
) =>
void
) |
undefined
>; };