@contract-case/case-plugin-base
Version:
Plugin framework for writing plugins for the ContractCase test framework
22 lines • 561 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SERIALISABLE_TO_JSON = exports.MATCH_BY_EXACT = exports.MATCH_BY_TYPE = void 0;
/**
* Indicates that we are doing a general shape match in this context
*
* @public
*/
exports.MATCH_BY_TYPE = 'type';
/**
* Indicates that we are doing an exact values match in this context
*
* @public
*/
exports.MATCH_BY_EXACT = 'exact';
/**
* Indicates that values must be serialisable to json
*
* @public
*/
exports.SERIALISABLE_TO_JSON = 'json';
//# sourceMappingURL=types.js.map