UNPKG

blwebhooks

Version:

Webhook Vote Reciever For Lists Such As top.gg, InfinityBotList and Many More To Come!

25 lines (24 loc) 505 B
/** * Default manager configuration for the client instance * @since 1.0.0 */ export interface ManagerConfig { storage: null | string; extraLogging: boolean; protocol: 'discordjs' | 'eris'; extra: { extraProtection: boolean; proxyTrust: boolean; shardedClient: boolean; }; } export const defaultManager: ManagerConfig = { storage: null, extraLogging: false, protocol: 'discordjs', extra: { extraProtection: true, proxyTrust: false, shardedClient: false } };