'use strict'; //TODO: module create, run, project create /** * A command that can be run anywhere, not intended to be run in a JAWS project * * @type {GlobalCmd} */ var GlobalCmd = class GlobalCmd { constructor() { } run() { } } module.exports = GlobalCmd;