import { YargsInstance, YargsArguments } from '../dependencies.ts'; export interface CommandInterface { name: string; execute: (options: YargsArguments) => Promise; configureOptions: (instance: YargsInstance) => Promise; }