Files
Crm-Client-Frontend/types/CrudTable/CrudTable.tsx
2025-10-18 01:46:46 +03:00

6 lines
146 B
TypeScript

export interface CRUDTableProps<T, C = T> {
onCreate?: (item: C | T) => void;
onDelete?: (item: T) => void;
onChange?: (item: T) => void;
}