UNPKG
@cran/vue.use
Version:
latest (0.0.2)
0.0.2
0.0.1
Cranberry Vue Use Utilities
c6s.gitlab.io/lib/vue/use/modules.html
@cran/vue.use
/
cjs
/
animation
/
useRafDt.d.ts
9 lines
(8 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
function
useRafDt
(
{ paused, }?: { paused?:
boolean
|
undefined
; }
): {
active
:
import
(
"@vue/reactivity"
).
Ref
<
boolean
>;
resume
:
() =>
void
;
pause
:
() =>
void
;
dt
:
import
(
"@vue/reactivity"
).
Ref
<
number
>; };