UNPKG

es-grid-template

Version:

es-grid-template

11 lines (10 loc) 302 B
/// <reference types="react" /> import type { CommandItem } from "../../../grid-component/type"; type Props<T> = { id: string; record: T; item: CommandItem; onClick: (e: any) => void; }; declare const Command: <T extends object>(props: Props<T>) => JSX.Element; export default Command;