2022-09-01 20:14:18 +00:00
|
|
|
import { YargsInstance, YargsArguments } from '../dependencies.ts';
|
2022-08-07 23:51:36 +00:00
|
|
|
|
|
|
|
|
export interface CommandInterface {
|
|
|
|
|
name: string;
|
2022-09-01 20:14:18 +00:00
|
|
|
execute: (options: YargsArguments) => Promise<boolean>;
|
|
|
|
|
configureOptions: (instance: YargsInstance) => Promise<void>;
|
2022-08-07 23:51:36 +00:00
|
|
|
}
|