Skip to content

Commit 05b1276

Browse files
committed
move docstring
1 parent bc7e441 commit 05b1276

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/deno/src/integrations/breadcrumbs.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ interface BreadcrumbsOptions {
1717

1818
const 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-
*/
2420
const _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+
*/
4848
export const breadcrumbsIntegration = defineIntegration(_breadcrumbsIntegration);
4949

5050
/**

0 commit comments

Comments
 (0)