Files
apkt-eis/src/components/Notification/interfaces/NotificationsState.interface.ts
Dede Fuji Abdul 275153649c first commit
2023-10-16 09:00:27 +07:00

6 lines
136 B
TypeScript

import type { Notification } from './Notification.interface';
export interface NotificationsState {
notifications: Notification[];
}