From 53c7b089987798dc1a5c6016a7c27fad66d4d84e Mon Sep 17 00:00:00 2001 From: Lucas K Date: Sun, 23 Dec 2018 16:02:55 -0600 Subject: [PATCH] update SnowflakeUtil typing --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index ea8d55e7fe3f..59e7bf515121 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -991,7 +991,7 @@ declare module 'discord.js' { export class SnowflakeUtil { public static deconstruct(snowflake: Snowflake): DeconstructedSnowflake; - public static generate(): Snowflake; + public static generate(timestamp?: number | Date): Snowflake; } const VolumeMixin: (base: Constructable) => Constructable;