diff --git a/src/bot.ts b/src/bot.ts index e324c61b6..86ede283b 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -123,13 +123,13 @@ export type Bot = CreatedBot & { }; export interface Transformers { - snowflake: typeof snowflakeToBigint, + snowflake: typeof snowflakeToBigint; } export function createTransformers(options: Partial) { return { snowflake: options.snowflake || snowflakeToBigint, - } + }; } export type RestManager = ReturnType;