UNPKG

ruch

Version:

Revolutionary React TypeScript CLI with hexagonal architecture & AI-powered development assistance. Create maintainable, scalable applications with domain-driven design and integrated AI tooling.

11 lines (9 loc) 292 B
/** * Entity definition for the Notification domain */ export interface NotificationEntity { id: string; // Add your entity properties here } export type NotificationCreationData = Omit<NotificationEntity, 'id'>; export type NotificationUpdateData = Partial<NotificationCreationData>;