Add InactivityNoticeProps type

This commit is contained in:
regalijan 2023-10-19 16:50:00 -04:00
parent 9f3b964754
commit c6a0fdd0b0
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

12
index.d.ts vendored
View File

@ -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;