From 8acb8248f64ac6dd66e8b22819e0cd8a70ddcd8f Mon Sep 17 00:00:00 2001 From: DarkGuy10 <62807269+DarkGuy10@users.noreply.github.com> Date: Mon, 3 Jul 2023 21:25:10 +0530 Subject: [PATCH] fix(typings): add strict `type` prop to `PartialGroupDMChannel` closes #746 --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 4dae466..047f543 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2571,6 +2571,7 @@ export class PartialGroupDMChannel extends TextBasedChannelMixin(Channel, [ 'setNSFW', ]) { private constructor(client: Client, data: RawPartialGroupDMChannelData); + public type: 'GROUP_DM'; public name: string | null; public icon: string | null; public readonly recipients: Collection;