|
1 | 1 | /* eslint-disable max-lines */ |
2 | | -import type { |
3 | | - Breadcrumb, |
4 | | - BreadcrumbHint, |
5 | | - CheckIn, |
6 | | - ClientOptions, |
7 | | - DataCategory, |
8 | | - DsnComponents, |
9 | | - DynamicSamplingContext, |
10 | | - Envelope, |
11 | | - ErrorEvent, |
12 | | - Event, |
13 | | - EventDropReason, |
14 | | - EventHint, |
15 | | - EventProcessor, |
16 | | - FeedbackEvent, |
17 | | - FetchBreadcrumbHint, |
18 | | - Integration, |
19 | | - Log, |
20 | | - MonitorConfig, |
21 | | - Outcome, |
22 | | - ParameterizedString, |
23 | | - SdkMetadata, |
24 | | - Session, |
25 | | - SessionAggregates, |
26 | | - SeverityLevel, |
27 | | - Span, |
28 | | - SpanAttributes, |
29 | | - SpanContextData, |
30 | | - SpanJSON, |
31 | | - StartSpanOptions, |
32 | | - TraceContext, |
33 | | - TransactionEvent, |
34 | | - Transport, |
35 | | - TransportMakeRequestResponse, |
36 | | - XhrBreadcrumbHint, |
37 | | -} from './types-hoist'; |
| 2 | +import type { Breadcrumb, BreadcrumbHint, FetchBreadcrumbHint, XhrBreadcrumbHint } from './types-hoist/breadcrumb'; |
| 3 | +import type { CheckIn, MonitorConfig } from './types-hoist/checkin'; |
| 4 | +import type { ClientOptions } from './types-hoist/options'; |
| 5 | +import type { DataCategory } from './types-hoist/datacategory'; |
| 6 | +import type { EventDropReason, Outcome } from './types-hoist/clientreport'; |
| 7 | +import type { DsnComponents } from './types-hoist/dsn'; |
| 8 | +import type { DynamicSamplingContext, Envelope } from './types-hoist/envelope'; |
| 9 | +import type { ErrorEvent, Event, EventHint, TransactionEvent } from './types-hoist/event'; |
| 10 | +import type { EventProcessor } from './types-hoist/eventprocessor'; |
| 11 | +import type { FeedbackEvent } from './types-hoist/feedback'; |
| 12 | +import type { Integration } from './types-hoist/integration'; |
| 13 | +import type { Log } from './types-hoist/log'; |
| 14 | +import type { ParameterizedString } from './types-hoist/parameterize'; |
| 15 | +import type { SdkMetadata } from './types-hoist/sdkmetadata'; |
| 16 | +import type { Session, SessionAggregates } from './types-hoist/session'; |
| 17 | +import type { SeverityLevel } from './types-hoist/severity'; |
| 18 | +import type { Span, SpanAttributes, SpanContextData, SpanJSON } from './types-hoist/span'; |
| 19 | +import type { StartSpanOptions } from './types-hoist/startSpanOptions'; |
| 20 | +import type { TraceContext } from './types-hoist/context'; |
| 21 | +import type { Transport, TransportMakeRequestResponse } from './types-hoist/transport'; |
38 | 22 |
|
39 | 23 | import { getEnvelopeEndpointWithUrlEncodedAuth } from './api'; |
40 | 24 | import { DEFAULT_ENVIRONMENT } from './constants'; |
|
0 commit comments