File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/deno/src/integrations Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,6 @@ interface BreadcrumbsOptions {
1717
1818const INTEGRATION_NAME = 'Breadcrumbs' ;
1919
20- /**
21- * This breadcrumbsIntegration is almost the same as the one from @sentry/browser.
22- * The Deno-version does not support browser-specific APIs like dom, xhr and history.
23- */
2420const _breadcrumbsIntegration = ( ( options : Partial < BreadcrumbsOptions > = { } ) => {
2521 const _options = {
2622 console : true ,
@@ -45,6 +41,10 @@ const _breadcrumbsIntegration = ((options: Partial<BreadcrumbsOptions> = {}) =>
4541 } ;
4642} ) satisfies IntegrationFn ;
4743
44+ /**
45+ * This breadcrumbsIntegration is almost the same as the one from @sentry/browser.
46+ * The Deno-version does not support browser-specific APIs like dom, xhr and history.
47+ */
4848export const breadcrumbsIntegration = defineIntegration ( _breadcrumbsIntegration ) ;
4949
5050/**
You can’t perform that action at this time.
0 commit comments