aboutsummaryrefslogtreecommitdiff
path: root/src/webpack
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2023-04-17 01:06:54 +0200
committerVendicated <vendicated@riseup.net>2023-04-17 01:06:54 +0200
commit1caaa78490854bdd043775fe1b8ea087b0cdad8c (patch)
treec7344fa8fc0d578273806a0157db0b263cf9887f /src/webpack
parentd35654b887d9a736e0d01a91b70d9e2feb19a398 (diff)
downloadVencord-1caaa78490854bdd043775fe1b8ea087b0cdad8c.tar.gz
Vencord-1caaa78490854bdd043775fe1b8ea087b0cdad8c.tar.bz2
Vencord-1caaa78490854bdd043775fe1b8ea087b0cdad8c.zip
PinDMs: Add option to sort by most recent message
Diffstat (limited to 'src/webpack')
-rw-r--r--src/webpack/common/types/utils.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpack/common/types/utils.d.ts b/src/webpack/common/types/utils.d.ts
index 038163d..1534f32 100644
--- a/src/webpack/common/types/utils.d.ts
+++ b/src/webpack/common/types/utils.d.ts
@@ -68,7 +68,7 @@ export interface SnowflakeUtils {
extractTimestamp(snowflake: string): number;
age(snowflake: string): number;
atPreviousMillisecond(snowflake: string): string;
- compare(snowflake1: string, snowflake2: string): number;
+ compare(snowflake1?: string, snowflake2?: string): number;
}
interface RestRequestData {