Skip to content

Commit

Permalink
Add test case
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Apr 30, 2024
1 parent 5a12afd commit bbeafbb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test-workspace/tsc/vue3/#4326/main.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<script setup lang="ts">
import { exactType } from 'tsc/shared';
const { bottom } = defineSlots<{
bottom: (props: { num: number }) => any[],
}>()
exactType(bottom, {} as (props: {
num: number;
}) => any[])
</script>

0 comments on commit bbeafbb

Please sign in to comment.