Skip to content

Commit

Permalink
add more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
g-plane committed Feb 1, 2024
1 parent 400c48b commit e692a58
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"resolveType": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function scope() {
function defineComponent() {}

defineComponent((props: { msg: string }) => {})
}

defineComponent((props: { msg: string }) => {})
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
function scope() {
function defineComponent1() {}
defineComponent1((props: {
msg: string;
})=>{});
}
defineComponent((props: {
msg: string;
})=>{});

0 comments on commit e692a58

Please sign in to comment.