Main/resources/[freizeit]/[gym]/ps-ui/web/src/interfaces/INotification.ts
2025-08-11 16:51:34 +02:00

8 lines
184 B
TypeScript

import type { NotificationTypes } from './../enums/NotificationTypesEnum';
export interface INotification {
text: string;
type: NotificationTypes;
icon: string;
length: number;
}