@tabula/ui-json-view
Version:
Allows to view JSON in interactive way
13 lines (12 loc) • 314 B
TypeScript
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 {};