macros-global.d.ts 414 B

12345678910111213141516171819
  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. declare global {
  11. const $: typeof _$
  12. const $$: typeof _$$
  13. const $ref: typeof _$ref
  14. const $shallowRef: typeof _$shallowRef
  15. const $computed: typeof _$computed
  16. const $customRef: typeof _$customRef
  17. const $toRef: typeof _$toRef
  18. }