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

Interface FlagSchema

src/args.ts:21–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21interface FlagSchema {
22 booleans: Set<string>;
23 numbers: Set<string>;
24 arrays: Set<string>;
25}
26
27function buildSchema(options: OptionDef[]): FlagSchema {
28 const booleans = new Set<string>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected