mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
export interface NewNotification {
|
|
title: string;
|
|
message: string;
|
|
url?: string;
|
|
}
|
|
|
|
export interface Notification extends NewNotification {
|
|
id: number;
|
|
}
|