/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ /** A single CLI mirror command: its subcommand name, help summary, and runner. */ export interface MirrorCommand { /** CLI subcommand name, e.g. "sf-gql-list", matching the MCP tool's `sf_gql_*`. */ name: string; /** One-line `--help` summary. */ summary: string; /** Read JSON (positional arg or stdin), validate, build, emit one JSON line. */ run: (jsonArg?: string) => Promise; } /** Every CLI mirror command. Single source of truth for `cli.ts` and the tests. */ export declare const MIRRORS: MirrorCommand[];