model-layer
Version:
22 lines • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Walker {
constructor() {
this.exited = false;
this.continued = false;
}
exit() {
this.exited = true;
}
isExited() {
return this.exited;
}
continue() {
this.continued = true;
}
isContinued() {
return this.continued;
}
}
exports.default = Walker;
//# sourceMappingURL=Walker.js.map