fix(types): fix on* props incorrect type for TS 4.7 (#6216)

fix #6052
This commit is contained in:
Carlos Rodrigues
2022-07-06 09:28:25 +01:00
committed by GitHub
parent 17c50ce18d
commit 8dcb6c7bbd
2 changed files with 35 additions and 4 deletions

View File

@@ -1163,6 +1163,38 @@ describe('should allow to assign props', () => {
expectType<JSX.Element>(<Parent {...child.$props} />)
})
// #6052
describe('prop starting with `on*` is broken', () => {
defineComponent({
props: {
onX: {
type: Function as PropType<(a: 1) => void>,
required: true
}
},
setup(props) {
expectType<(a: 1) => void>(props.onX)
props.onX(1)
}
})
defineComponent({
props: {
onX: {
type: Function as PropType<(a: 1) => void>,
required: true
}
},
emits: {
test: (a: 1) => true
},
setup(props) {
expectType<(a: 1) => void>(props.onX)
expectType<undefined | ((a: 1) => any)>(props.onTest)
}
})
})
// check if defineComponent can be exported
export default {
// function components
@@ -1209,5 +1241,4 @@ declare const MyButton: DefineComponent<
Readonly<ExtractPropTypes<{}>>,
{}
>
;<MyButton class="x" />