import { flags, SfdxCommand } from '@salesforce/command'; import { AnyJson } from "@salesforce/ts-types"; import { FetchUtil } from '../../../helper/FetchUtils'; export default class ScriptCodeGen extends SfdxCommand { static description: string; static examples: string[]; protected static flagsConfig: { codetype: flags.Discriminated; lang: flags.Discriminated; }; static fetchUtils: FetchUtil; getFileContent(url: any): Promise; contentMap(url: any): Promise; generateCode(codeType: any, lang: any): Promise; run(): Promise; }