import { CommandLineInputs, CommandLineOptions, Command, CommandMetadata } from '@ionic/cli-utils'; /** * Metadata about the docs command */ @CommandMetadata({ name: 'download', description: 'Opens up the documentation for Ionic', }) export class DownloadCommand extends Command { async run(inputs: CommandLineInputs, options: CommandLineOptions): Promise { } }