UNPKG

@tabula/ui-json-view

Version:
13 lines (12 loc) 314 B
import { FC } from 'react'; import { QueryFn } from '../types'; type Props = { className?: string; defaultLabel: string; jsonPath: string; successLabel: string; toClipboard: (jsonPath: string, query: QueryFn) => string; trackId?: string; }; export declare const Copy: FC<Props>; export {};