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) 244 B
/** * Entity definition for the User domain */ export interface UserEntity { id: string; // Add your entity properties here } export type UserCreationData = Omit<UserEntity, 'id'>; export type UserUpdateData = Partial<UserCreationData>;