UNPKG

discord-bot-maker-v1

Version:

a Simple Discord bot maker that can make bots without stealing anything

10 lines (8 loc) 359 B
export interface DiscordBotMakerError extends Error { } export interface DiscordBotMakerErrorConstructor extends ErrorConstructor { new(message?: string): DiscordBotMakerError; (message?: string): DiscordBotMakerError; readonly prototype: DiscordBotMakerError; } export declare var DiscordBotMakerError: DiscordBotMakerErrorConstructor;