import {defineShape, assertValidShape} from 'object-shape-tester';
const myShape = defineShape({
a: '',
});
assertValidShape(myShape, {a: 'hi'}); // succeeds
assertValidShape(myShape, {a: 'hi', b: 'bye'}, {allowExtraKeys: true}); // succeeds
assertValidShape(myShape, {a: 3}); // fails
ShapeMismatchError If there is a mismatch
Assets that a variable matches the given shape.