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 Cart domain */ export interface CartEntity { id: string; // Add your entity properties here } export type CartCreationData = Omit<CartEntity, 'id'>; export type CartUpdateData = Partial<CartCreationData>;