6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
export interface Notification {
|
|
id: number,
|
|
text: string,
|
|
date: Date,
|
|
status: { username: string, status: string }[],
|
|
} |