/**
 * Parsed ACTION command
 *
 * @see ./actionCommandParser.ts for more details
 * @private within the commands folder
 */
export type ActionCommand = {
    readonly type: 'ACTION';
};
