Repository URL to install this package:
|
Version:
2.1.16 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const tslib_1 = require("tslib");
const mobx_1 = require("xmobx/mobx");
class ShoppingListCollapseState {
constructor() {
this.collapseState = undefined;
this.removeConfirmationState = undefined;
}
}
tslib_1.__decorate([mobx_1.observable], ShoppingListCollapseState.prototype, "collapseState", void 0);
tslib_1.__decorate([mobx_1.observable], ShoppingListCollapseState.prototype, "removeConfirmationState", void 0);
exports.ShoppingListCollapseState = ShoppingListCollapseState;