Creates a ShapeDefinition from any input. This produces both a type and a default value. This is the core of the object-shape-tester package; ShapeDefinition instances are used for all of the shape checking.
object-shape-tester
import {defineShape} from 'object-shape-tester';const myShape = defineShape({ a: '', b: -1,});function doThing( // using the generated type and default value input: typeof myShape.runtimeType = myShape.defaultValue,) {} Copy
import {defineShape} from 'object-shape-tester';const myShape = defineShape({ a: '', b: -1,});function doThing( // using the generated type and default value input: typeof myShape.runtimeType = myShape.defaultValue,) {}
Creates a ShapeDefinition from any input. This produces both a type and a default value. This is the core of the
object-shape-tester
package; ShapeDefinition instances are used for all of the shape checking.