moonlifedb
Version:
A JSON database with a bunch of tools and typescript support.
17 lines (16 loc) • 397 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Event = void 0;
const CoreCheck_1 = require("../CoreCheck");
const lib = new CoreCheck_1.Memory();
class Event {
method;
type;
body;
constructor(method, type, body) {
this.method = method;
this.type = type;
this.body = body;
}
}
exports.Event = Event;