2023-11-13 20:41:10 +00:00

6 lines
135 B
TypeScript

export interface Notification {
id: number,
text: string,
date: Date,
status: { username: string, status: string }[],
}