UNPKG

es-grid-template

Version:

es-grid-template

10 lines (9 loc) 269 B
import React from "react"; import type { CommandItem } from "../../type"; type Props<T> = { record: T; item: CommandItem; onClick: (e: any) => void; }; declare const Command: <T extends object>(props: Props<T>) => React.JSX.Element; export default Command;