storeObject.js 108 B

1234567
  1. export class StoreObject {
  2. constructor(type, value) {
  3. this.type = type;
  4. this.value = value;
  5. }
  6. }