UNPKG

vue-types

Version:
11 lines (9 loc) 250 B
import { toType } from '../utils' import { Constructor } from '../types' export default function instanceOf<C extends Constructor>( instanceConstructor: C, ) { return toType<InstanceType<C>>('instanceOf', { type: instanceConstructor, }) }