UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

15 lines 547 B
import { default as React } from 'react'; import { DataGridStyles } from '../types'; interface ManageRowProps { handleClose?: () => void; selectedRows?: string[]; onAdd?: () => void; onDuplicate?: () => void; onDelete?: () => void; onManage?: () => void; onShow?: () => void; styles?: DataGridStyles; } declare function ManageRow({ handleClose, selectedRows, onAdd, onDuplicate, onDelete, onManage, onShow, styles, }: ManageRowProps): React.JSX.Element; export default ManageRow; //# sourceMappingURL=index.d.ts.map