Created
February 18, 2020 16:17
-
-
Save ha6000/ce7c38afb6765b00099d3e0e7e929239 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as Discord from 'discord.js'; | |
interface ClientOptions { | |
token: String; | |
logChannel: Discord.Snowflake; | |
} | |
declare class Client extends Discord.Client { | |
constructor(opts: ClientOptions); | |
} | |
export declare class Handler { | |
/** | |
* Epik handler | |
* @param Discord Discord module | |
*/ | |
constructor(Discord: any); | |
Discord: any; | |
Client: Client; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment