surrogate
Version:
Object method hooks made easy
14 lines • 598 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MethodWrapper = exports.SurrogateContext = void 0;
var SurrogateContext;
(function (SurrogateContext) {
SurrogateContext["Instance"] = "instance";
SurrogateContext["Surrogate"] = "surrogate";
})(SurrogateContext = exports.SurrogateContext || (exports.SurrogateContext = {}));
var MethodWrapper;
(function (MethodWrapper) {
MethodWrapper["Sync"] = "sync";
MethodWrapper["Async"] = "async";
})(MethodWrapper = exports.MethodWrapper || (exports.MethodWrapper = {}));
//# sourceMappingURL=index.js.map