mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
interface NotificationItem {
|
|
avatar: string;
|
|
date: string;
|
|
isRead?: boolean;
|
|
message: string;
|
|
title: string;
|
|
}
|
|
|
|
export type { NotificationItem };
|