UNPKG

crud-hook

Version:

Make CRUD operation easier.

7 lines (6 loc) 286 B
import { UseDrawerDescription } from '../../types/crud-table'; export default function <T = Record<string, any>>(props: UseDrawerDescription<T>): { openDescription: (data: T) => void; closeDescription: () => void; descriptionDom: import("react/jsx-runtime").JSX.Element; };