@johanblumenberg/ts-mockito
Version:
Mocking library for TypeScript
12 lines • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RealMethod = void 0;
var RealMethod = (function () {
function RealMethod(descriptor, instance) {
this.descriptor = descriptor;
this.instance = instance;
}
return RealMethod;
}());
exports.RealMethod = RealMethod;
//# sourceMappingURL=RealMethod.js.map