medusa-plugin-sentry-ui
Version:
UI components for medusa-sentry-plugin
12 lines (11 loc) • 338 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 SentryTransactions: (props: Props) => JSX.Element;
export default SentryTransactions;