medusa-plugin-sentry-ui
Version:
UI components for medusa-sentry-plugin
15 lines (12 loc) • 426 B
TypeScript
/// <reference types="react" />
import { RouteComponentProps, WindowLocation } from '@reach/router';
declare type Props = {
baseUrl: string;
organisation: string;
project: string;
location: WindowLocation;
onTransactionRowClick?: (row: any) => string;
onTransactionEventRowClick?: (row: any) => string;
};
declare const Sentry: (props: RouteComponentProps & Props) => JSX.Element;
export { Sentry };