method Command.prototype.versionOptionimport { Command } from "https://dotland.deno.dev/x/cliffy@v0.19.0/mod.ts"; versionOption(enable: false): thisDisable version option. versionOption(flags: string,desc?: string,opts?: ICommandOption<Partial<CO>, CA, CG, PG, P> & { global: true; },): thisSet global version option. versionOption(flags: string,desc?: string,opts?: ICommandOption<CO, CA, CG, PG, P>,): thisSet version option. versionOption(flags: string,desc?: string,opts?: IAction<CO, CA, CG, PG, P>,): thisSet version option. Disable version option. Parametersenable: falseReturnsthisSet global version option. Parametersflags: stringThe flags of the version option. optionaldesc: stringThe description of the version option. optionalopts: ICommandOption<Partial<CO>, CA, CG, PG, P> & { global: true; }Version option options. ReturnsthisSet version option. Parametersflags: stringThe flags of the version option. optionaldesc: stringThe description of the version option. optionalopts: ICommandOption<CO, CA, CG, PG, P>Version option options. ReturnsthisSet version option. Parametersflags: stringThe flags of the version option. optionaldesc: stringThe description of the version option. optionalopts: IAction<CO, CA, CG, PG, P>The action of the version option. Returnsthis