mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-21 12:29:36 +02:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
export interface NewNotification {
|
||
|
title: string;
|
||
|
message: string;
|
||
|
}
|
||
|
|
||
|
export interface Notification extends NewNotification {
|
||
|
id: number;
|
||
|
}
|