Define a shape part that's a union of all its inputs.
import {or, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: or('', -1),});// `myShape.runtimeType` is `{a: string | number}` Copy
import {or, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: or('', -1),});// `myShape.runtimeType` is `{a: string | number}`
Define a shape part that's a union of all its inputs.