/** * Manages a command line. */ export class Command { /****************************************************************************\ * Constructor \****************************************************************************/ /** * Creates a new CommandLine. * * @param {string} commandString The original, unparsed command string. */ constructor(commandString: string); /****************************************************************************\ * Public getters/setters \****************************************************************************/ /** @returns {string} The name of the command. */ get name(): string; /** @returns {string} The original, unparsed command string. */ get original(): string; /** @returns {Set} All parameters that were passed to the command. */ get parameters(): Set; #private; } //# sourceMappingURL=Command.d.ts.map