1 | import {
|
2 | $ as _$,
|
3 | $$ as _$$,
|
4 | $ref as _$ref,
|
5 | $shallowRef as _$shallowRef,
|
6 | $computed as _$computed,
|
7 | $customRef as _$customRef,
|
8 | $toRef as _$toRef
|
9 | } from './macros'
|
10 |
|
11 | declare global {
|
12 | const $: typeof _$
|
13 | const $$: typeof _$$
|
14 | const $ref: typeof _$ref
|
15 | const $shallowRef: typeof _$shallowRef
|
16 | const $computed: typeof _$computed
|
17 | const $customRef: typeof _$customRef
|
18 | const $toRef: typeof _$toRef
|
19 | }
|