From 87473a995ad5efd3786bb3485e3e68a22b0c1c3b Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 29 Nov 2023 15:09:21 +0800 Subject: [PATCH] fix: allow using `as` with multiple ` + + diff --git a/test-workspace/tsc/vue3/#3732/child2.vue b/test-workspace/tsc/vue3/#3732/child2.vue new file mode 100644 index 0000000000..36cb93ae45 --- /dev/null +++ b/test-workspace/tsc/vue3/#3732/child2.vue @@ -0,0 +1,5 @@ + + + diff --git a/test-workspace/tsc/vue3/#3732/main.ts b/test-workspace/tsc/vue3/#3732/main.ts new file mode 100644 index 0000000000..d56826bc7e --- /dev/null +++ b/test-workspace/tsc/vue3/#3732/main.ts @@ -0,0 +1,6 @@ +import { exactType } from '../../shared'; +import child from './child.vue'; +import child2 from './child2.vue'; + +exactType(child, 1); +exactType(child2, 1);