MCPcopy
hub / github.com/MiniMax-AI/cli / OptionDef

Interface OptionDef

src/command.ts:4–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import type { GlobalFlags } from './types/flags';
3
4export interface OptionDef {
5 flag: string;
6 description: string;
7 type?: 'string' | 'number' | 'boolean' | 'array';
8 required?: boolean;
9}
10
11export interface Command {
12 name: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected