mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 20:43:13 +08:00
10 lines
162 B
TypeScript
10 lines
162 B
TypeScript
export interface NewNotification {
|
|
title: string;
|
|
message: string;
|
|
url?: string;
|
|
}
|
|
|
|
export interface Notification extends NewNotification {
|
|
id: number;
|
|
}
|