drf-react-by-schema
Version:
Components and Tools for building a React App having Django Rest Framework (DRF) as server
12 lines • 457 B
TypeScript
import React from 'react';
import { Id } from '../../@types';
type FooterToolbarProps = {
isEditable: boolean;
handleAddItem: () => void;
isRowEditing?: Id;
handleSaveRow: (p: Id) => void;
handleCancelRow: (p: Id) => void;
};
export declare const FooterToolbar: ({ isEditable, handleAddItem, isRowEditing, handleSaveRow, handleCancelRow, }: FooterToolbarProps) => React.JSX.Element;
export {};
//# sourceMappingURL=FooterToolbar.d.ts.map