shadcn-vue/packages/cli/test/utils/__fixtures__/props.ts
Dunqing a4774ff48d
fix(cli): missing props/emits when disable typescript (#105)
* feat(cli): support remove type when non-typescript

* fix(cli): missing props/emits when doesn't enable typescript

* test: add test cases for defineProps/defineEmits

* fix: withDefaults case

* fix: cannot resolve external and packages types

* fix: missing assign variable
2023-11-02 22:22:33 +08:00

5 lines
51 B
TypeScript

export interface Props {
a: string
b: number
}