/*! * Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. */ import { Command } from '@oclif/command'; import * as execa from 'execa'; import { BoolArgType, StringArgType } from '../utils/generate-odata-client-util'; export default class GenerateODataClient extends Command { static description: string; static examples: string[]; static flags: BoolArgType & StringArgType; run(): Promise>; }