Fix entity typings

This commit is contained in:
regalijan 2023-10-19 16:49:52 -04:00
parent 98f00d5a4c
commit bd95bb2b10
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

4
index.d.ts vendored
View File

@ -26,7 +26,7 @@ declare global {
interface AppealCardProps { interface AppealCardProps {
ban_reason: string; ban_reason: string;
createdAt: number; created_at: number;
discriminator: string; discriminator: string;
id: string; id: string;
learned: string; learned: string;
@ -35,6 +35,7 @@ declare global {
} }
interface GameAppealProps { interface GameAppealProps {
created_at: number;
reasonForUnban: string; reasonForUnban: string;
roblox_id: number; roblox_id: number;
roblox_username: string; roblox_username: string;
@ -44,6 +45,7 @@ declare global {
interface ReportCardProps { interface ReportCardProps {
attachment: string; attachment: string;
attachment_loading?: boolean; attachment_loading?: boolean;
created_at: number;
reporter?: { [k: string]: any }; reporter?: { [k: string]: any };
target_ids: number[]; target_ids: number[];
target_usernames: string[]; target_usernames: string[];