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) 250 B
/** * Entity definition for the Order domain */ export interface OrderEntity { id: string; // Add your entity properties here } export type OrderCreationData = Omit<OrderEntity, 'id'>; export type OrderUpdateData = Partial<OrderCreationData>;