surrogate
Version:
Object method hooks made easy
15 lines • 521 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HookType = exports.PRE = exports.POST = exports.BOTH = exports.EMPTY = exports.METHOD = void 0;
exports.METHOD = 'method';
exports.EMPTY = 'empty';
exports.BOTH = 'both';
exports.POST = 'post';
exports.PRE = 'pre';
var HookType;
(function (HookType) {
HookType["PRE"] = "pre";
HookType["POST"] = "post";
HookType["BOTH"] = "both";
})(HookType = exports.HookType || (exports.HookType = {}));
//# sourceMappingURL=index.js.map