medusa-plugin-sentry-ui
Version:
UI components for medusa-sentry-plugin
12 lines (11 loc) • 352 B
TypeScript
/// <reference types="react" />
import { AdminClient } from '../../types';
declare type Props = {
medusaClient: AdminClient;
organisation: string;
project: string;
location: Location;
onRowClick?: (row: any) => string;
};
declare const SentryTransactionEvents: (props: Props) => JSX.Element;
export default SentryTransactionEvents;