From f9ece309b767847a93a83ca8dcacda946188aa86 Mon Sep 17 00:00:00 2001 From: zhiyuanzmj <260480378@qq.com> Date: Fri, 30 Aug 2024 21:17:39 +0800 Subject: [PATCH] chore: up test --- .../tsc/passedFixtures/vue3.5/templateRef/components.d.ts | 5 +++++ .../tsc/passedFixtures/vue3.5/templateRef/template-ref.vue | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 test-workspace/tsc/passedFixtures/vue3.5/templateRef/components.d.ts diff --git a/test-workspace/tsc/passedFixtures/vue3.5/templateRef/components.d.ts b/test-workspace/tsc/passedFixtures/vue3.5/templateRef/components.d.ts new file mode 100644 index 0000000000..8cc40dc371 --- /dev/null +++ b/test-workspace/tsc/passedFixtures/vue3.5/templateRef/components.d.ts @@ -0,0 +1,5 @@ +declare module 'vue' { + export interface GlobalComponents { + Generic: typeof import('./generic.vue')['default']; + } +} diff --git a/test-workspace/tsc/passedFixtures/vue3.5/templateRef/template-ref.vue b/test-workspace/tsc/passedFixtures/vue3.5/templateRef/template-ref.vue index 2a08b3ce79..c490ca6c56 100644 --- a/test-workspace/tsc/passedFixtures/vue3.5/templateRef/template-ref.vue +++ b/test-workspace/tsc/passedFixtures/vue3.5/templateRef/template-ref.vue @@ -1,10 +1,8 @@