We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.1.10
1.91.1
3.5.13
5.4.5
windows
No response
xx.ts
// type Option = { // label: string // value: any // } // export interface Option { // label: string // value: any // } interface Option { label: string value: any } export interface ComponentProps { option?: Option disable?: boolean }
xx.vue
<template> <div></div> </template> <script setup lang="ts"> defineProps<ComponentProps >() </script>
When using interface Option , the vue.d.ts file is not generated.
interface Option
vue.d.ts
When using export interface Option and type Option, the vue.d.ts file can be generated.
export interface Option
type Option
There should be a vue.d.ts file.
vue.d.ts file is not generated.
The text was updated successfully, but these errors were encountered:
See #1232 (comment)
Sorry, something went wrong.
No branches or pull requests
Vue - Official extension or vue-tsc version
2.1.10
VSCode version
1.91.1
Vue version
3.5.13
TypeScript version
5.4.5
System Info
package.json dependencies
No response
Steps to reproduce
xx.ts
xx.vue
When using
interface Option
, thevue.d.ts
file is not generated.When using
export interface Option
andtype Option
, the vue.d.ts file can be generated.What is expected?
There should be a vue.d.ts file.
What is actually happening?
vue.d.ts file is not generated.
Link to minimal reproduction
No response
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: