123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import DeveloperError from "../Core/DeveloperError.js";
- function Command() {
-
- this.canExecute = undefined;
-
- this.beforeExecute = undefined;
-
- this.afterExecute = undefined;
- DeveloperError.throwInstantiationError();
- }
- export default Command;
|