9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import { CommandClient } from 'athena-prime';
|
|
|
|
export interface Task {
|
|
interval: number;
|
|
firstRun: boolean;
|
|
|
|
handle(context: CommandClient): Promise<void>;
|
|
};
|