import { CustomPropsNotErased } from '@vue/dts-built-test' import { expectType, describe } from './utils' declare module 'vue' { interface ComponentCustomProps { custom?: number } } // #8376 - custom props should not be erased describe('Custom Props not erased', () => { expectType(new CustomPropsNotErased().$props.custom) })