import { Options } from '../config/options.ts'; import { yargs } from '../dependencies.ts'; export interface CommandInterface { name: string; execute: (options: Options) => Promise; configureOptions: (instance: yargs.Argv) => Promise; }