Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix entity typings
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 98f00d5 commit bd95bb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.d.ts
Expand Up @@ -26,7 +26,7 @@ declare global {

interface AppealCardProps {
ban_reason: string;
createdAt: number;
created_at: number;
discriminator: string;
id: string;
learned: string;
Expand All @@ -35,6 +35,7 @@ declare global {
}

interface GameAppealProps {
created_at: number;
reasonForUnban: string;
roblox_id: number;
roblox_username: string;
Expand All @@ -44,6 +45,7 @@ declare global {
interface ReportCardProps {
attachment: string;
attachment_loading?: boolean;
created_at: number;
reporter?: { [k: string]: any };
target_ids: number[];
target_usernames: string[];
Expand Down

0 comments on commit bd95bb2

Please sign in to comment.