UNPKG

@tabula/ui-json-view

Version:
12 lines (11 loc) 246 B
import { FC } from 'react'; import { ActionFn } from '../types'; type Props = { action: ActionFn; children: string; className?: string; jsonPath: string; trackId?: string; }; export declare const Action: FC<Props>; export {};