BC-DCBOR-CLI TypeScript Library - v1.0.0-alpha.16
    Preparing search index...

    Type Alias Command

    Command:
        | {
            type: "array";
            elements: string[];
            out: OutputFormat;
            annotate: boolean;
        }
        | { type: "map"; kvPairs: string[]; out: OutputFormat; annotate: boolean }
        | {
            type: "match";
            pattern: string;
            input?: string;
            in: InputFormat;
            out: MatchOutputFormat;
            noIndent: boolean;
            lastOnly: boolean;
            annotate: boolean;
            captures: boolean;
        }
        | {
            type: "default";
            input?: string;
            in: InputFormat;
            out: OutputFormat;
            annotate: boolean;
        }

    Command type discriminator