Skip to content

Commit e27fa47

Browse files
committed
update
1 parent 89927fd commit e27fa47

File tree

1 file changed

+1
-1
lines changed
  • tests/fixtures/types/vue/vue-script-setup01

1 file changed

+1
-1
lines changed

tests/fixtures/types/vue/vue-script-setup01/types.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { TypeFoo } from "../vue-script-setup02/source.vue"; // TypeFoo: any, Typ
1010
import { numberValue } from "./number"; // numberValue: 1, numberValue: 1
1111
let a: TypeFoo = $ref(1); // a: string, $ref(1): any
1212
let b: TypeFoo; // b: string
13-
defineProps<{ foo: string }>(); // defineProps<{ foo: string }>(): Readonly<{ foo: string; }>
13+
defineProps<{ foo: string }>(); // defineProps<{ foo: string }>(): Readonly<Omit<{ foo: string; }, never> & {}>
1414
console.log(numberValue); // console.log(numberValue): void
1515
</script>
1616

0 commit comments

Comments
 (0)