Merge branch 'fp-attempt-9001' of https://github.com/discordeno/discordeno into fp-attempt-9001

This commit is contained in:
Skillz4Killz
2021-10-08 15:11:02 +00:00
committed by GitHub

View File

@@ -123,13 +123,13 @@ export type Bot = CreatedBot & {
};
export interface Transformers {
snowflake: typeof snowflakeToBigint,
snowflake: typeof snowflakeToBigint;
}
export function createTransformers(options: Partial<Transformers>) {
return {
snowflake: options.snowflake || snowflakeToBigint,
}
};
}
export type RestManager = ReturnType<typeof createRestManager>;