Define a shape part that requires exactly the value given.
import {exact, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: or(exact('hi'), exact('bye')),});// `myShape.runtimeType` is `{a: 'hi' | 'bye'}` Copy
import {exact, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: or(exact('hi'), exact('bye')),});// `myShape.runtimeType` is `{a: 'hi' | 'bye'}`
Define a shape part that requires exactly the value given.