apkt-eis/src/components/Notification/interfaces/NotificationsState.interface.ts
2024-02-19 09:08:50 +07:00

6 lines
136 B
TypeScript
Executable File

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