Define a shape part requires a tuple.
import {exact, defineShape, tupleShape} from 'object-shape-tester';const myShape = defineShape({ a: tupleShape('a', -1, exact('hi')),});// `myShape.runtimeType` is `[string, number, 'hi']` Copy
import {exact, defineShape, tupleShape} from 'object-shape-tester';const myShape = defineShape({ a: tupleShape('a', -1, exact('hi')),});// `myShape.runtimeType` is `[string, number, 'hi']`
Define a shape part requires a tuple.