UNPKG

242 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.AbstractCommand = void 0;
4class AbstractCommand {
5 constructor(action) {
6 this.action = action;
7 }
8}
9exports.AbstractCommand = AbstractCommand;