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