2022-08-27 13:35:02 +00:00
|
|
|
import { Options } from '../config/options.ts';
|
2022-08-27 22:57:51 +00:00
|
|
|
import { yargs } from '../dependencies.ts';
|
2022-08-07 23:51:36 +00:00
|
|
|
|
|
|
|
|
export interface CommandInterface {
|
|
|
|
|
name: string;
|
|
|
|
|
execute: (options: Options) => Promise<boolean>;
|
2022-08-27 22:57:51 +00:00
|
|
|
configureOptions: (instance: yargs.Argv) => Promise<void>;
|
2022-08-07 23:51:36 +00:00
|
|
|
}
|