vue3-core/packages/dts-built-test/src/index.ts

13 lines
242 B
TypeScript

import { defineComponent } from 'vue'
const _CustomPropsNotErased = defineComponent({
props: {},
setup() {}
})
// #8376
export const CustomPropsNotErased =
_CustomPropsNotErased as typeof _CustomPropsNotErased & {
foo: string
}