@ptkdev/node-discord-bot-boilerplate
Version:
Create your discord bot with this friendly boilerplate. Use this repository as template for your bot
27 lines (26 loc) • 638 B
TypeScript
export namespace server {
const port: number;
}
export namespace discord {
const token: string;
}
export namespace databases {
const users: string;
}
export const debug: boolean;
export namespace log {
export namespace path {
const debug_log: string;
const error_log: string;
}
export const language: string;
export const colors: string;
const debug_1: string;
export { debug_1 as debug };
export const info: string;
export const warning: string;
export const error: string;
export const sponsor: string;
export const write: string;
export const type: string;
}