Skip to content

Instantly share code, notes, and snippets.

@ha6000
Created February 18, 2020 16:17
Show Gist options
  • Save ha6000/ce7c38afb6765b00099d3e0e7e929239 to your computer and use it in GitHub Desktop.
Save ha6000/ce7c38afb6765b00099d3e0e7e929239 to your computer and use it in GitHub Desktop.
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