UNPKG

@sentry/ember

Version:
11 lines (10 loc) 493 B
import type Route from '@ember/routing/route'; import type { BrowserOptions } from '@sentry/browser'; import type { Client } from '@sentry/core'; /** * Initialize the Sentry SDK for Ember. */ export declare function init(_runtimeConfig?: BrowserOptions): Client | undefined; type RouteConstructor = new (...args: ConstructorParameters<typeof Route>) => Route; export declare const instrumentRoutePerformance: <T extends RouteConstructor>(BaseRoute: T) => T; export * from '@sentry/browser';