Define a shape part that requires an enum value.
import {enumShape, defineShape} from 'object-shape-tester';enum MyEnum { A = 'a', B = 'b',}const myShape = defineShape({ a: enumShape(MyEnum),});// `myShape.runtimeType` is `{a: MyEnum}` Copy
import {enumShape, defineShape} from 'object-shape-tester';enum MyEnum { A = 'a', B = 'b',}const myShape = defineShape({ a: enumShape(MyEnum),});// `myShape.runtimeType` is `{a: MyEnum}`
Define a shape part that requires an enum value.