testing it on personal bot

This commit is contained in:
jacoobes
2022-01-24 23:17:22 -06:00
parent 0f50d5779c
commit e2ee5fa1bf
5 changed files with 31 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
import type { Ok, Result } from 'ts-results';
import type { Awaitable, Client, Message, MessagePayload} from 'discord.js';
import type { MessageOptions } from 'child_process';
import type Sern from '../..';
export type Visibility = "private" | "public"
export type possibleOutput = string | MessagePayload & MessageOptions
@@ -14,6 +15,4 @@ export type delegate = Sern.Module<unknown>["delegate"]
export enum CommandType {
TEXT = 0b00000001 << 0b00000001,
SLASH = 0b00000001 << 0b00000010,
}
declare class MsgHandler {}
}