UNPKG
@ant-design-vue/use
Version:
latest (0.0.1-alpha.10)
0.0.1-alpha.10
0.0.1-alpha.9
0.0.1-alpha.8
0.0.1-alpha.7
0.0.1-alpha.6
0.0.1-alpha.5
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
Vue 3 Composition Api Library.
github.com/vueComponent/use
vueComponent/use
@ant-design-vue/use
/
lib
/
useReactiveRef
/
index.d.ts
5 lines
(4 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
import
{
ComponentPublicInstance
,
Ref
}
from
'vue'
;
declare
type
ElementType
=
HTMLElement
|
ComponentPublicInstance
;
declare
function
useReactiveRef
(
): [
Ref
<
ElementType
>,
(
...
args
:
any
) =>
void
];
export
default
useReactiveRef;