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