Define a shape part that is optional. This only makes sense as a property in an object.
import {optional, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: optional(-1),});// `myShape.runtimeType` is `{a?: number}` Copy
import {optional, defineShape} from 'object-shape-tester';const myShape = defineShape({ a: optional(-1),});// `myShape.runtimeType` is `{a?: number}`
Define a shape part that is optional. This only makes sense as a property in an object.