@@ -8,7 +8,13 @@ import {
8
8
ComputedOptions ,
9
9
MethodOptions
10
10
} from './apiOptions'
11
- import { UnwrapRef , ReactiveEffect , isRef , isReactive } from '@vue/reactivity'
11
+ import {
12
+ ReactiveEffect ,
13
+ isRef ,
14
+ isReactive ,
15
+ Ref ,
16
+ ComputedRef
17
+ } from '@vue/reactivity'
12
18
import { warn } from './warning'
13
19
import { Slots } from './componentSlots'
14
20
import {
@@ -19,9 +25,9 @@ import {
19
25
// public properties exposed on the proxy, which is used as the render context
20
26
// in templates (as `this` in the render option)
21
27
export type ComponentPublicInstance <
22
- P = { } ,
23
- B = { } ,
24
- D = { } ,
28
+ P = { } , // props type extracted from props option
29
+ B = { } , // raw bindings returned from setup()
30
+ D = { } , // return from data()
25
31
C extends ComputedOptions = { } ,
26
32
M extends MethodOptions = { } ,
27
33
PublicProps = P
@@ -40,11 +46,17 @@ export type ComponentPublicInstance<
40
46
$nextTick : typeof nextTick
41
47
$watch : typeof instanceWatch
42
48
} & P &
43
- UnwrapRef < B > &
49
+ UnwrapSetupBindings < B > &
44
50
D &
45
51
ExtractComputedReturns < C > &
46
52
M
47
53
54
+ type UnwrapSetupBindings < B > = { [ K in keyof B ] : UnwrapBinding < B [ K ] > }
55
+
56
+ type UnwrapBinding < B > = B extends ComputedRef < any >
57
+ ? B extends ComputedRef < infer V > ? V : B
58
+ : B extends Ref < infer V > ? V : B
59
+
48
60
const publicPropertiesMap : Record <
49
61
string ,
50
62
( i : ComponentInternalInstance ) => any
0 commit comments