class BaseState { constructor(cloneObj) { } get asObj() { return {}; } static get default() { return {}; } clone() { return this(this.asObj); } } module.exports = BaseState;