ts-mockito
Version:
Mocking library for TypeScript
15 lines • 390 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var Matcher = (function () {
function Matcher() {
}
Matcher.prototype.match = function (value) {
return false;
};
Matcher.prototype.toString = function () {
return "";
};
return Matcher;
}());
exports.Matcher = Matcher;
//# sourceMappingURL=Matcher.js.map