types: typing for ref macros
This commit is contained in:
parent
1bab53e717
commit
327c8983fb
21
packages/runtime-core/src/helpers/refMacros.ts
Normal file
21
packages/runtime-core/src/helpers/refMacros.ts
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import { Ref, UnwrapRef, ShallowUnwrapRef, ComputedRef } from '@vue/reactivity'
|
||||||
|
|
||||||
|
export function $ref<T>(arg: T | Ref<T>): UnwrapRef<T>
|
||||||
|
export function $ref() {}
|
||||||
|
|
||||||
|
declare const ComputedRefMarker: unique symbol
|
||||||
|
type ComputedRefValue<T> = T & { [ComputedRefMarker]?: any }
|
||||||
|
|
||||||
|
export function $computed<T>(getter: () => T): ComputedRefValue<T>
|
||||||
|
export function $computed() {}
|
||||||
|
|
||||||
|
export function $fromRefs<T>(source: T): ShallowUnwrapRef<T>
|
||||||
|
export function $fromRefs() {
|
||||||
|
return null as any
|
||||||
|
}
|
||||||
|
|
||||||
|
export function $raw<T>(value: ComputedRefValue<T>): ComputedRef<T>
|
||||||
|
export function $raw<T>(value: T): Ref<T>
|
||||||
|
export function $raw() {
|
||||||
|
return null as any
|
||||||
|
}
|
@ -53,20 +53,19 @@ export { provide, inject } from './apiInject'
|
|||||||
export { nextTick } from './scheduler'
|
export { nextTick } from './scheduler'
|
||||||
export { defineComponent } from './apiDefineComponent'
|
export { defineComponent } from './apiDefineComponent'
|
||||||
export { defineAsyncComponent } from './apiAsyncComponent'
|
export { defineAsyncComponent } from './apiAsyncComponent'
|
||||||
|
export { useAttrs, useSlots } from './apiSetupHelpers'
|
||||||
|
|
||||||
// <script setup> API ----------------------------------------------------------
|
// <script setup> API ----------------------------------------------------------
|
||||||
|
|
||||||
export {
|
export {
|
||||||
// macros runtime, for warnings only
|
// macros runtime, for typing and warnings only
|
||||||
defineProps,
|
defineProps,
|
||||||
defineEmits,
|
defineEmits,
|
||||||
defineExpose,
|
defineExpose,
|
||||||
withDefaults,
|
withDefaults,
|
||||||
// internal
|
// internal
|
||||||
mergeDefaults,
|
mergeDefaults,
|
||||||
withAsyncContext,
|
withAsyncContext
|
||||||
useAttrs,
|
|
||||||
useSlots
|
|
||||||
} from './apiSetupHelpers'
|
} from './apiSetupHelpers'
|
||||||
|
|
||||||
// Advanced API ----------------------------------------------------------------
|
// Advanced API ----------------------------------------------------------------
|
||||||
@ -345,3 +344,7 @@ const _compatUtils = {
|
|||||||
export const compatUtils = (__COMPAT__
|
export const compatUtils = (__COMPAT__
|
||||||
? _compatUtils
|
? _compatUtils
|
||||||
: null) as typeof _compatUtils
|
: null) as typeof _compatUtils
|
||||||
|
|
||||||
|
// Ref macros ------------------------------------------------------------------
|
||||||
|
// for dts generation only
|
||||||
|
export { $ref, $computed, $raw, $fromRefs } from './helpers/refMacros'
|
||||||
|
@ -5,9 +5,19 @@ type _defineEmits = typeof defineEmits
|
|||||||
type _defineExpose = typeof defineExpose
|
type _defineExpose = typeof defineExpose
|
||||||
type _withDefaults = typeof withDefaults
|
type _withDefaults = typeof withDefaults
|
||||||
|
|
||||||
|
type _ref = typeof $ref
|
||||||
|
type _computed = typeof $computed
|
||||||
|
type _fromRefs = typeof $fromRefs
|
||||||
|
type _raw = typeof $raw
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
const defineProps: _defineProps
|
const defineProps: _defineProps
|
||||||
const defineEmits: _defineEmits
|
const defineEmits: _defineEmits
|
||||||
const defineExpose: _defineExpose
|
const defineExpose: _defineExpose
|
||||||
const withDefaults: _withDefaults
|
const withDefaults: _withDefaults
|
||||||
|
|
||||||
|
const $ref: _ref
|
||||||
|
const $computed: _computed
|
||||||
|
const $fromRefs: _fromRefs
|
||||||
|
const $raw: _raw
|
||||||
}
|
}
|
||||||
|
42
test-dts/refMacros.test-d.ts
Normal file
42
test-dts/refMacros.test-d.ts
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import {
|
||||||
|
expectType,
|
||||||
|
$ref,
|
||||||
|
$computed,
|
||||||
|
$fromRefs,
|
||||||
|
$raw,
|
||||||
|
ref,
|
||||||
|
Ref,
|
||||||
|
ComputedRef
|
||||||
|
} from './index'
|
||||||
|
|
||||||
|
// $ref
|
||||||
|
expectType<number>($ref(1))
|
||||||
|
expectType<number>($ref(ref(1)))
|
||||||
|
expectType<{ foo: number }>($ref({ foo: ref(1) }))
|
||||||
|
|
||||||
|
// $computed
|
||||||
|
expectType<number>($computed(() => 1))
|
||||||
|
let b = $ref(1)
|
||||||
|
expectType<number>($computed(() => b))
|
||||||
|
|
||||||
|
function useFoo() {
|
||||||
|
return {
|
||||||
|
x: ref(1),
|
||||||
|
y: ref('hi'),
|
||||||
|
z: 123
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// $fromRefs
|
||||||
|
const { x, y, z } = $fromRefs(useFoo())
|
||||||
|
expectType<number>(x)
|
||||||
|
expectType<string>(y)
|
||||||
|
expectType<number>(z)
|
||||||
|
|
||||||
|
// $raw
|
||||||
|
expectType<Ref<number>>($raw(x))
|
||||||
|
expectType<Ref<string>>($raw(y))
|
||||||
|
|
||||||
|
const c = $computed(() => 1)
|
||||||
|
const cRef = $raw(c)
|
||||||
|
expectType<ComputedRef<number>>(cRef)
|
Loading…
x
Reference in New Issue
Block a user