Stone.js API
    Preparing search index...

    Minimal yargs builder surface used to declare the command's options. Re-declared locally so the package stays decoupled from @stone-js/node-cli-adapter (the CLI adapter passes the real yargs builder at run time; this only shapes the callback).

    interface IArgv {
        option: (
            name: string,
            options: {
                alias?: string;
                default?: unknown;
                desc?: string;
                type?: string;
            },
        ) => IArgv;
        positional: (name: string, options: Record<string, unknown>) => IArgv;
    }
    Index
    option: (
        name: string,
        options: {
            alias?: string;
            default?: unknown;
            desc?: string;
            type?: string;
        },
    ) => IArgv
    positional: (name: string, options: Record<string, unknown>) => IArgv