Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add InactivityNoticeProps type
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 9f3b964 commit c6a0fdd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.d.ts
Expand Up @@ -45,6 +45,18 @@ declare global {
whatHappened: string;
}

interface InactivityNoticeProps {
created_at: number;
departments: string[];
end: string;
reason: string;
start: string;
user: {
id: string;
username: string;
};
}

interface ReportCardProps {
attachment: string;
attachment_loading?: boolean;
Expand Down

0 comments on commit c6a0fdd

Please sign in to comment.