types(Invite): Approximate fields should be nullable

#10997
This commit is contained in:
Elysia
2025-09-13 18:05:19 +07:00
parent 6fbb62ac64
commit f0ec7d977c

4
typings/index.d.ts vendored
View File

@@ -2134,8 +2134,8 @@ export class Invite extends Base {
public inviterId: Snowflake | null;
public maxAge: number | null;
public maxUses: number | null;
public memberCount: number;
public presenceCount: number;
public memberCount: number | null;
public presenceCount: number | null;
public type: InviteTypes | null;
public targetApplication: IntegrationApplication | null;
public targetUser: User | null;