Define a shape part that requires an instance of the given constructor.
import {classShape, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: classShape(RegExp),});// `myShape.runtimeType` is `{a: RegExp}` Copy
import {classShape, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: classShape(RegExp),});// `myShape.runtimeType` is `{a: RegExp}`
Define a shape part that requires an instance of the given constructor.