/* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ export class OTLPExporterBase { _delegate; constructor(delegate) { this._delegate = delegate; } /** * Export items. * @param items * @param resultCallback */ export(items, resultCallback) { this._delegate.export(items, resultCallback); } forceFlush() { return this._delegate.forceFlush(); } shutdown() { return this._delegate.shutdown(); } } //# sourceMappingURL=OTLPExporterBase.js.map