UNPKG

medusa-plugin-sentry-ui

Version:
15 lines (12 loc) 426 B
/// <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 };