From fe9500538e76423e49e16a1e1756eb04b5f40531 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Tue, 28 Sep 2021 17:57:09 +0100 Subject: [PATCH] types(Presence): fix ActivityOptions#type and Activity#id types (#6696) --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 3511cc530..bb8e8293e 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -146,7 +146,7 @@ export class Activity { public details: string | null; public emoji: Emoji | null; public flags: Readonly; - public id: Snowflake; + public id: string; public name: string; public party: { id: string | null; @@ -2863,7 +2863,7 @@ export type ActivitiesOptions = Omit; export interface ActivityOptions { name?: string; url?: string; - type?: ActivityType | number; + type?: Exclude | Exclude; shardId?: number | readonly number[]; }