Schema of the record
record({ x: someArbitraryInt, y: someArbitraryInt }): Arbitrary<{x:number,y:number}>
// merge two integer arbitraries to produce a {x, y} record
Since 0.0.12
For records following the recordModel
schema
Schema of the record
Contraints on the generated record
record({ x: someArbitraryInt, y: someArbitraryInt }, {withDeletedKeys: true}): Arbitrary<{x?:number,y?:number}>
// merge two integer arbitraries to produce a {x, y}, {x}, {y} or {} record
Since 0.0.12
Generated using TypeDoc
For records following the
recordModel
schema