0985712a1d
See the following commits for more info: - https://github.com/e621ng/discordbot-ng/commit/fdcb193e317b764755dea4a054a1b0a5adf745f2 - https://github.com/e621ng/discordbot-ng/commit/66d4bd49266a634436ff075c6765083853976d47 - https://github.com/e621ng/discordbot-ng/commit/6ad3ee5f23df319c09fdb52e6a8cf6e073a0bb3b
9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
import { Client } from "discord.js";
|
|
|
|
export interface Task {
|
|
interval: number;
|
|
firstRun: boolean;
|
|
|
|
handle(context: Client): Promise<void>;
|
|
};
|