Skip to content

Commit

Permalink
make implicit re-exports explicit
Browse files Browse the repository at this point in the history
Mostly scripted. Thanks, Trent!

Re-exports under namespaces and re-exports from another package were
done by hand.

We have intentionally have not tackled NodeSDK yet. Awaiting feedback on
this approach so far before updating that package.

Co-authored-by: Trent Mick <trentm@gmail.com>
Co-authored-by: Jamie Danielson <jamieedanielson@gmail.com>
  • Loading branch information
3 people committed Jul 30, 2024
1 parent dd73e23 commit 7c927b0
Show file tree
Hide file tree
Showing 52 changed files with 1,259 additions and 149 deletions.
8 changes: 4 additions & 4 deletions experimental/packages/api-events/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* limitations under the License.
*/

export * from './types/EventLogger';
export * from './types/EventLoggerProvider';
export * from './types/Event';
export * from './types/EventLoggerOptions';
export { EventLogger } from './types/EventLogger';
export { EventLoggerProvider } from './types/EventLoggerProvider';
export { Event } from './types/Event';
export { EventLoggerOptions } from './types/EventLoggerOptions';

import { EventsAPI } from './api/events';
export const events = EventsAPI.getInstance();
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './globalThis';
export { _globalThis } from './globalThis';
2 changes: 1 addition & 1 deletion experimental/packages/api-events/src/platform/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './node';
export { _globalThis } from './node';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './globalThis';
export { _globalThis } from './globalThis';
19 changes: 12 additions & 7 deletions experimental/packages/api-logs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@
* limitations under the License.
*/

export * from './types/Logger';
export * from './types/LoggerProvider';
export * from './types/LogRecord';
export * from './types/LoggerOptions';
export * from './types/AnyValue';
export * from './NoopLogger';
export * from './NoopLoggerProvider';
export { Logger } from './types/Logger';
export { LoggerProvider } from './types/LoggerProvider';
export {
LogAttributes,
LogBody,
LogRecord,
SeverityNumber,
} from './types/LogRecord';
export { LoggerOptions } from './types/LoggerOptions';
export { AnyValue, AnyValueMap } from './types/AnyValue';
export { NOOP_LOGGER, NoopLogger } from './NoopLogger';
export { NOOP_LOGGER_PROVIDER, NoopLoggerProvider } from './NoopLoggerProvider';

import { LogsAPI } from './api/logs';
export const logs = LogsAPI.getInstance();
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './globalThis';
export { _globalThis } from './globalThis';
2 changes: 1 addition & 1 deletion experimental/packages/api-logs/src/platform/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './node';
export { _globalThis } from './node';
2 changes: 1 addition & 1 deletion experimental/packages/api-logs/src/platform/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './globalThis';
export { _globalThis } from './globalThis';
2 changes: 1 addition & 1 deletion experimental/packages/exporter-logs-otlp-grpc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPLogExporter';
export { OTLPLogExporter } from './OTLPLogExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPTraceExporter';
export { OTLPTraceExporter } from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './platform';
export { OTLPTraceExporter } from './platform';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPTraceExporter';
export { OTLPTraceExporter } from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './node';
export { OTLPTraceExporter } from './node';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPTraceExporter';
export { OTLPTraceExporter } from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './BrowserDetector';
export { browserDetector } from './BrowserDetector';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPMetricExporter';
export { OTLPMetricExporter } from './OTLPMetricExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
* limitations under the License.
*/

export * from './platform';
export * from './OTLPMetricExporterOptions';
export * from './OTLPMetricExporterBase';
export { OTLPMetricExporter } from './platform';
export {
AggregationTemporalityPreference,
OTLPMetricExporterOptions,
} from './OTLPMetricExporterOptions';
export {
CumulativeTemporalitySelector,
DeltaTemporalitySelector,
LowMemoryTemporalitySelector,
OTLPMetricExporterBase,
} from './OTLPMetricExporterBase';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPMetricExporter';
export { OTLPMetricExporter } from './OTLPMetricExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './node';
export { OTLPMetricExporter } from './node';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPMetricExporter';
export { OTLPMetricExporter } from './OTLPMetricExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

export * from './OTLPMetricExporter';
export { OTLPMetricExporter } from './OTLPMetricExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
* limitations under the License.
*/

export * from './PrometheusExporter';
export * from './PrometheusSerializer';
export * from './export/types';
export { PrometheusExporter } from './PrometheusExporter';
export { PrometheusSerializer } from './PrometheusSerializer';
export { ExporterConfig } from './export/types';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
* limitations under the License.
*/

export * from './fetch';
export {
FetchCustomAttributeFunction,
FetchInstrumentation,
FetchInstrumentationConfig,
} from './fetch';
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,49 @@
* limitations under the License.
*/

export * from './http';
export * from './types';
export * from './utils';
export { HttpInstrumentation } from './http';
export {
Err,
Func,
GetFunction,
Http,
HttpCallback,
HttpCallbackOptional,
HttpCustomAttributeFunction,
HttpInstrumentationConfig,
HttpRequestArgs,
HttpRequestCustomAttributeFunction,
HttpResponseCustomAttributeFunction,
Https,
IgnoreIncomingRequestFunction,
IgnoreMatcher,
IgnoreOutgoingRequestFunction,
ParsedRequestOptions,
RequestFunction,
RequestSignature,
StartIncomingSpanCustomAttributeFunction,
StartOutgoingSpanCustomAttributeFunction,
} from './types';
export {
extractHostnameAndPort,
getAbsoluteUrl,
getIncomingRequestAttributes,
getIncomingRequestAttributesOnResponse,
getIncomingRequestMetricAttributes,
getIncomingRequestMetricAttributesOnResponse,
getOutgoingRequestAttributes,
getOutgoingRequestAttributesOnResponse,
getOutgoingRequestMetricAttributes,
getOutgoingRequestMetricAttributesOnResponse,
getRequestInfo,
headerCapture,
isCompressed,
isIgnored,
isValidOptionsType,
parseResponseStatus,
satisfiesPattern,
setAttributesFromHttpKind,
setRequestContentLengthAttribute,
setResponseContentLengthAttribute,
setSpanWithError,
} from './utils';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,8 @@
* limitations under the License.
*/

export * from './xhr';
export {
XHRCustomAttributeFunction,
XMLHttpRequestInstrumentation,
XMLHttpRequestInstrumentationConfig,
} from './xhr';
17 changes: 14 additions & 3 deletions experimental/packages/opentelemetry-instrumentation/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ export { registerInstrumentations } from './autoLoader';
export { InstrumentationBase } from './platform/index';
export { InstrumentationNodeModuleDefinition } from './instrumentationNodeModuleDefinition';
export { InstrumentationNodeModuleFile } from './instrumentationNodeModuleFile';
export * from './types';
export * from './types_internal';
export * from './utils';
export {
Instrumentation,
InstrumentationConfig,
InstrumentationModuleDefinition,
InstrumentationModuleFile,
ShimWrapped,
SpanCustomizationHook,
} from './types';
export { AutoLoaderOptions, AutoLoaderResult } from './types_internal';
export {
isWrapped,
safeExecuteInTheMiddle,
safeExecuteInTheMiddleAsync,
} from './utils';
6 changes: 4 additions & 2 deletions experimental/packages/opentelemetry-sdk-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
* limitations under the License.
*/

/* eslint-disable no-restricted-syntax */
// TODO: Remove the eslint-disable line after these are explicitly exported.
export * as api from '@opentelemetry/api';
export * as contextBase from '@opentelemetry/api';
export * as core from '@opentelemetry/core';
Expand All @@ -22,5 +24,5 @@ export * as metrics from '@opentelemetry/sdk-metrics';
export * as node from '@opentelemetry/sdk-trace-node';
export * as resources from '@opentelemetry/resources';
export * as tracing from '@opentelemetry/sdk-trace-base';
export * from './sdk';
export * from './types';
export { LoggerProviderConfig, MeterProviderConfig, NodeSDK } from './sdk';
export { NodeSDKConfiguration } from './types';
11 changes: 10 additions & 1 deletion experimental/packages/otlp-exporter-base/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './platform';
export {
CompressionAlgorithm,
OTLPExporterBrowserBase,
OTLPExporterNodeBase,
OTLPExporterNodeConfigBase,
configureCompression,

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'configureCompression'.

Check failure on line 21 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'configureCompression'.
createHttpAgent,

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'createHttpAgent'.

Check failure on line 22 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'createHttpAgent'.
sendWithHttp,

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (20)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (22)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (16)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / browser-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (18)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / webworker-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-tests (14)

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / node-windows-tests

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'sendWithHttp'.

Check failure on line 23 in experimental/packages/otlp-exporter-base/src/index.ts

View workflow job for this annotation

GitHub Actions / build

Module '"./platform"' has no exported member 'sendWithHttp'.
sendWithXhr,
} from './platform';
export { OTLPExporterBase } from './OTLPExporterBase';
export {
OTLPExporterError,
Expand Down
6 changes: 5 additions & 1 deletion packages/opentelemetry-context-zone/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,9 @@
* limitations under the License.
*/

export * from '@opentelemetry/context-zone-peer-dep';
export {
Func,
TargetWithEvents,
ZoneContextManager,
} from '@opentelemetry/context-zone-peer-dep';
import 'zone.js';
Loading

0 comments on commit 7c927b0

Please sign in to comment.