11// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
22
3- exports [` vue-tsc-dts > Input: component-name-description/component.vue, Output: component-name-description/component.vue.d.ts 1` ] = `
3+ exports [` Input: component-name-description/component.vue, Output: component-name-description/component.vue.d.ts 1` ] = `
44"/**
55 * My awesome component description
66 */
@@ -38,7 +38,7 @@ declare const __VLS_export: import("vue").DefineComponent2<{
3838"
3939` ;
4040
41- exports [` vue-tsc-dts > Input: component-name-description/component-no-name.vue, Output: component-name-description/component-no-name.vue.d.ts 1` ] = `
41+ exports [` Input: component-name-description/component-no-name.vue, Output: component-name-description/component-no-name.vue.d.ts 1` ] = `
4242"/**
4343 * Component without explicit name
4444 */
@@ -74,7 +74,7 @@ export default _default;
7474"
7575` ;
7676
77- exports [` vue-tsc-dts > Input: component-name-description/component-ts.ts, Output: component-name-description/component-ts.d.ts 1` ] = `
77+ exports [` Input: component-name-description/component-ts.ts, Output: component-name-description/component-ts.d.ts 1` ] = `
7878"/**
7979 * TypeScript component with description
8080 */
@@ -111,7 +111,7 @@ export default _default;
111111"
112112` ;
113113
114- exports [` vue-tsc-dts > Input: empty-component/component.vue, Output: empty-component/component.vue.d.ts 1` ] = `
114+ exports [` Input: empty-component/component.vue, Output: empty-component/component.vue.d.ts 1` ] = `
115115"declare const __VLS_export: import("vue").DefineComponent2<{
116116 setup (): {};
117117 data (): {};
@@ -138,7 +138,7 @@ export default _default;
138138"
139139` ;
140140
141- exports [` vue-tsc-dts > Input: empty-component/custom-extension-component.cext, Output: empty-component/custom-extension-component.cext.d.ts 1` ] = `
141+ exports [` Input: empty-component/custom-extension-component.cext, Output: empty-component/custom-extension-component.cext.d.ts 1` ] = `
142142"declare const __VLS_export: import("vue").DefineComponent2<{
143143 setup (): {};
144144 data (): {};
@@ -165,7 +165,7 @@ export default _default;
165165"
166166` ;
167167
168- exports [` vue-tsc-dts > Input: generic/component.vue, Output: generic/component.vue.d.ts 1` ] = `
168+ exports [` Input: generic/component.vue, Output: generic/component.vue.d.ts 1` ] = `
169169"declare const __VLS_export: <T >(__VLS_props: NonNullable<Awaited<typeof __VLS_setup >>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup >>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup >>["expose"], __VLS_setup?: Promise<{
170170 props : __VLS_PrettifyLocal < ({
171171 foo: number ;
@@ -200,7 +200,7 @@ type __VLS_PrettifyLocal<T> = (T extends any ? {
200200"
201201`;
202202
203- exports[`vue-tsc-dts > Input: generic/custom-extension-component.cext, Output: generic/custom-extension-component.cext.d.ts 1`] = `
203+ exports[`Input: generic/custom-extension-component.cext, Output: generic/custom-extension-component.cext.d.ts 1`] = `
204204"declare const __VLS_export: <T >(__VLS_props: NonNullable<Awaited<typeof __VLS_setup >>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup >>, "attrs" | "emit" | "slots">>, __VLS_exposed?: NonNullable<Awaited<typeof __VLS_setup >>["expose"], __VLS_setup?: Promise<{
205205 props : __VLS_PrettifyLocal < ({
206206 foo: number ;
@@ -235,7 +235,7 @@ type __VLS_PrettifyLocal<T> = (T extends any ? {
235235"
236236`;
237237
238- exports[`vue-tsc-dts > Input: generic/main.vue, Output: generic/main.vue.d.ts 1`] = `
238+ exports[`Input: generic/main.vue, Output: generic/main.vue.d.ts 1`] = `
239239"declare const __VLS_export: import("vue").DefineComponent2<{
240240 setup (): {};
241241 data (): {};
@@ -262,13 +262,13 @@ export default _default;
262262"
263263`;
264264
265- exports[`vue-tsc-dts > Input: non-component/component.ts, Output: non-component/component.d.ts 1`] = `
265+ exports[`Input: non-component/component.ts, Output: non-component/component.d.ts 1`] = `
266266"declare const _default: { } ;
267267export default _default;
268268"
269269`;
270270
271- exports[`vue-tsc-dts > Input: options-api/component.ts, Output: options-api/component.d.ts 1`] = `
271+ exports[`Input: options-api/component.ts, Output: options-api/component.d.ts 1`] = `
272272"interface SubmitPayload {
273273 /**
274274 * email of user
@@ -337,7 +337,7 @@ export default _default;
337337"
338338`;
339339
340- exports[`vue-tsc-dts > Input: reference-type-events/component.vue, Output: reference-type-events/component.vue.d.ts 1`] = `
340+ exports[`Input: reference-type-events/component.vue, Output: reference-type-events/component.vue.d.ts 1`] = `
341341"import type { MyEvents } from './my-events';
342342declare const __VLS_export: import("vue").DefineComponent2<{
343343 setup (): {};
@@ -365,7 +365,7 @@ export default _default;
365365"
366366`;
367367
368- exports[`vue-tsc-dts > Input: reference-type-events/my-events.ts, Output: reference-type-events/my-events.d.ts 1`] = `
368+ exports[`Input: reference-type-events/my-events.ts, Output: reference-type-events/my-events.d.ts 1`] = `
369369"/**
370370 * Emitted when the foo property is changed.
371371 */
@@ -384,7 +384,7 @@ export {};
384384"
385385`;
386386
387- exports[`vue-tsc-dts > Input: reference-type-exposed/component.vue, Output: reference-type-exposed/component.vue.d.ts 1`] = `
387+ exports[`Input: reference-type-exposed/component.vue, Output: reference-type-exposed/component.vue.d.ts 1`] = `
388388"declare const __VLS_export: import("vue").DefineComponent2<{
389389 setup (): {
390390 /**
@@ -416,7 +416,7 @@ export default _default;
416416"
417417`;
418418
419- exports[`vue-tsc-dts > Input: reference-type-model/component.vue, Output: reference-type-model/component.vue.d.ts 1`] = `
419+ exports[`Input: reference-type-model/component.vue, Output: reference-type-model/component.vue.d.ts 1`] = `
420420"type __VLS_ModelProps = {
421421 /**
422422 * required number modelValue
@@ -463,7 +463,7 @@ export default _default;
463463"
464464`;
465465
466- exports[`vue-tsc-dts > Input: reference-type-props/component.vue, Output: reference-type-props/component.vue.d.ts 1`] = `
466+ exports[`Input: reference-type-props/component.vue, Output: reference-type-props/component.vue.d.ts 1`] = `
467467"import { MyProps } from './my-props';
468468declare const __VLS_export: import("vue").DefineComponent2<{
469469 setup (): {};
@@ -494,7 +494,7 @@ export default _default;
494494"
495495`;
496496
497- exports[`vue-tsc-dts > Input: reference-type-props/component-destructure.vue, Output: reference-type-props/component-destructure.vue.d.ts 1`] = `
497+ exports[`Input: reference-type-props/component-destructure.vue, Output: reference-type-props/component-destructure.vue.d.ts 1`] = `
498498"type __VLS_Props = {
499499 text : string ;
500500} ;
@@ -524,7 +524,7 @@ export default _default;
524524"
525525`;
526526
527- exports[`vue-tsc-dts > Input: reference-type-props/component-js.vue, Output: reference-type-props/component-js.vue.d.ts 1`] = `
527+ exports[`Input: reference-type-props/component-js.vue, Output: reference-type-props/component-js.vue.d.ts 1`] = `
528528"declare const _default: typeof __VLS_export;
529529export default _default;
530530declare const __VLS_export: import("vue").DefineComponent2<{
@@ -574,7 +574,7 @@ declare const __VLS_export: import("vue").DefineComponent2<{
574574"
575575`;
576576
577- exports[`vue-tsc-dts > Input: reference-type-props/component-js-setup.vue, Output: reference-type-props/component-js-setup.vue.d.ts 1`] = `
577+ exports[`Input: reference-type-props/component-js-setup.vue, Output: reference-type-props/component-js-setup.vue.d.ts 1`] = `
578578"declare const __VLS_export: import("vue").DefineComponent2<{
579579 setup (): {};
580580 data (): {};
@@ -641,7 +641,7 @@ export default _default;
641641"
642642`;
643643
644- exports[`vue-tsc-dts > Input: reference-type-props/my-props.ts, Output: reference-type-props/my-props.d.ts 1`] = `
644+ exports[`Input: reference-type-props/my-props.ts, Output: reference-type-props/my-props.d.ts 1`] = `
645645"export interface MyNestedProps {
646646 /**
647647 * nested prop documentation
@@ -752,7 +752,7 @@ export {};
752752"
753753`;
754754
755- exports[`vue-tsc-dts > Input: reference-type-slots/component.vue, Output: reference-type-slots/component.vue.d.ts 1`] = `
755+ exports[`Input: reference-type-slots/component.vue, Output: reference-type-slots/component.vue.d.ts 1`] = `
756756"declare var __VLS_1: { } , __VLS_3: {
757757 num : number ;
758758} , __VLS_5: {
@@ -802,7 +802,7 @@ type __VLS_WithSlots<T, S> = T & {
802802"
803803`;
804804
805- exports[`vue-tsc-dts > Input: reference-type-slots/component-define-slots.vue, Output: reference-type-slots/component-define-slots.vue.d.ts 1`] = `
805+ exports[`Input: reference-type-slots/component-define-slots.vue, Output: reference-type-slots/component-define-slots.vue.d.ts 1`] = `
806806"import type { VNode } from 'vue';
807807type __VLS_Slots = {
808808 default : (props : {
@@ -849,7 +849,7 @@ type __VLS_WithSlots<T, S> = T & {
849849"
850850`;
851851
852- exports[`vue-tsc-dts > Input: reference-type-slots/component-no-script.vue, Output: reference-type-slots/component-no-script.vue.d.ts 1`] = `
852+ exports[`Input: reference-type-slots/component-no-script.vue, Output: reference-type-slots/component-no-script.vue.d.ts 1`] = `
853853"declare var __VLS_1: { } , __VLS_3: {
854854 num : number ;
855855} , __VLS_5: {
@@ -899,7 +899,7 @@ type __VLS_WithSlots<T, S> = T & {
899899"
900900`;
901901
902- exports[`vue-tsc-dts > Input: ts-component/PropDefinitions.ts, Output: ts-component/PropDefinitions.d.ts 1`] = `
902+ exports[`Input: ts-component/PropDefinitions.ts, Output: ts-component/PropDefinitions.d.ts 1`] = `
903903"export interface MyProps {
904904 /**
905905 * string foo
@@ -913,11 +913,11 @@ exports[`vue-tsc-dts > Input: ts-component/PropDefinitions.ts, Output: ts-compon
913913"
914914`;
915915
916- exports[`vue-tsc-dts > Input: ts-component/component.ts, Output: ts-component/component.d.ts 1`] = `undefined`;
916+ exports[`Input: ts-component/component.ts, Output: ts-component/component.d.ts 1`] = `undefined`;
917917
918- exports[`vue-tsc-dts > Input: ts-component/component.tsx, Output: ts-component/component.d.ts 1`] = `undefined`;
918+ exports[`Input: ts-component/component.tsx, Output: ts-component/component.d.ts 1`] = `undefined`;
919919
920- exports[`vue-tsc-dts > Input: ts-named-export/component.ts, Output: ts-named-export/component.d.ts 1`] = `
920+ exports[`Input: ts-named-export/component.ts, Output: ts-named-export/component.d.ts 1`] = `
921921"export declare const Foo: import("vue").DefineSetupFnComponent<{
922922 foo : string ;
923923} , string[], { } , {
0 commit comments