7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
|
|
import { Options } from '../../config/options.ts';
|
||
|
|
|
||
|
|
export interface CommandInterface {
|
||
|
|
name: string;
|
||
|
|
execute: (options: Options) => Promise<void>;
|
||
|
|
}
|