@@ -13,7 +13,7 @@ declare const _default: <Row extends BaseRow>(__VLS_props: NonNullable<Awaited<t
13
13
attrs : any ;
14
14
slots : {
15
15
default? (_ : {
16
- row: Row ;
16
+ row: import ( " vue " ). Reactive < Row > ;
17
17
}): any ;
18
18
};
19
19
emit : {};
@@ -91,7 +91,7 @@ type __VLS_PrettifyLocal<T> = {
91
91
exports[`vue-tsc-dts > Input: generic/component.vue, Output: generic/component.vue.d.ts 1`] = `
92
92
"declare const _default: <T >(__VLS_props: NonNullable<Awaited<typeof __VLS_setup >>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup >>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup >>["expose"], __VLS_setup?: Promise<{
93
93
props : __VLS_PrettifyLocal < Pick < Partial < {}> & Omit < {
94
- readonly "onUpdate:title " ?: (title : string) => any;
94
+ readonly "onUpdate:title " ?: (value : string) => any;
95
95
readonly onBar ?: (data : number ) => any ;
96
96
} & import (" vue" ).VNodeProps & import (" vue" ).AllowedComponentProps & import (" vue" ).ComponentCustomProps , never > , " onUpdate:title" | " onBar" > & Partial < {}> & ({
97
97
title?: string;
@@ -111,7 +111,7 @@ exports[`vue-tsc-dts > Input: generic/component.vue, Output: generic/component.v
111
111
foo: number ;
112
112
}): any ;
113
113
};
114
- emit : ((e : " bar" , data : number ) => void ) & ((evt : " update:title" , title : string ) => void );
114
+ emit : ((e : " bar" , data : number ) => void ) & ((evt : " update:title" , value : string ) => void );
115
115
} >) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
116
116
[key : string ]: any ;
117
117
} > & {
@@ -127,7 +127,7 @@ type __VLS_PrettifyLocal<T> = {
127
127
exports[`vue-tsc-dts > Input: generic/custom-extension-component.cext, Output: generic/custom-extension-component.cext.d.ts 1`] = `
128
128
"declare const _default: <T >(__VLS_props: NonNullable<Awaited<typeof __VLS_setup >>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup >>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup >>["expose"], __VLS_setup?: Promise<{
129
129
props : __VLS_PrettifyLocal < Pick < Partial < {}> & Omit < {
130
- readonly "onUpdate:title " ?: (title : string) => any;
130
+ readonly "onUpdate:title " ?: (value : string) => any;
131
131
readonly onBar ?: (data : number ) => any ;
132
132
} & import (" vue" ).VNodeProps & import (" vue" ).AllowedComponentProps & import (" vue" ).ComponentCustomProps , never > , " onUpdate:title" | " onBar" > & Partial < {}> & ({
133
133
title?: string;
@@ -147,7 +147,7 @@ exports[`vue-tsc-dts > Input: generic/custom-extension-component.cext, Output: g
147
147
foo: number ;
148
148
}): any ;
149
149
};
150
- emit : ((e : " bar" , data : number ) => void ) & ((evt : " update:title" , title : string ) => void );
150
+ emit : ((e : " bar" , data : number ) => void ) & ((evt : " update:title" , value : string ) => void );
151
151
} >) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
152
152
[key : string ]: any ;
153
153
} > & {
@@ -321,13 +321,13 @@ exports[`vue-tsc-dts > Input: reference-type-model/component.vue, Output: refere
321
321
quxModifiers ?: Record < ' lazy' | ' trim' , true > ;
322
322
} ;
323
323
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps >>, { } , { } , { } , { } , import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
324
- " update:foo" : (foo : number ) => void ;
325
- " update:bar" : (bar : string []) => void ;
326
- " update:qux" : (qux : string ) => void ;
324
+ " update:foo" : (value : number ) => void ;
325
+ " update:bar" : (value : string []) => void ;
326
+ " update:qux" : (value : string ) => void ;
327
327
} , string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps >>> & Readonly<{
328
- " onUpdate:foo" ?: (foo : number ) => any ;
329
- " onUpdate:bar" ?: (bar : string []) => any ;
330
- " onUpdate:qux" ?: (qux : string ) => any ;
328
+ " onUpdate:foo" ?: (value : number ) => any ;
329
+ " onUpdate:bar" ?: (value : string []) => any ;
330
+ " onUpdate:qux" ?: (value : string ) => any ;
331
331
} >, { } , { } , { } , { } , string, import("vue").ComponentProvideOptions, true, { } , any>;
332
332
export default _default;
333
333
type __VLS_NonUndefinedable<T > = T extends undefined ? never : T;
0 commit comments