globalOptions: {
readonly cwd: {
readonly type: "string";
readonly describe: "Path of working directory";
readonly global: true;
readonly default: () => string;
readonly defaultDescription: "CWD";
readonly coerce: (arg: string) => string;
};
readonly "log-level": {
readonly type: "string";
readonly describe: "Set log level";
readonly global: true;
readonly default: "info";
};
readonly silent: {
readonly type: "boolean";
readonly describe: "Disable log output";
readonly global: true;
readonly default: false;
};
}