6 lines
136 B
TypeScript
Executable File
6 lines
136 B
TypeScript
Executable File
import type { Notification } from './Notification.interface';
|
|
|
|
export interface NotificationsState {
|
|
notifications: Notification[];
|
|
}
|