Skip to content

Commit

Permalink
chore(NA): fix type exports
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Nov 17, 2021
1 parent a485ad0 commit bb923aa
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions packages/elastic-apm-synthtrace/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@
* Side Public License, v 1.
*/

export { Exception } from './lib/entity';
export { service, Service } from './lib/service';
export { browser, Browser } from './lib/browser';
export { timerange, Timerange } from './lib/timerange';
export type { Exception } from './lib/entity';
export type {
ElasticsearchOutput,
ElasticsearchOutputWriteTargets,
} from './lib/output/to_elasticsearch_output';
export type { Service } from './lib/service';
export type { Browser } from './lib/browser';
export type { Timerange } from './lib/timerange';
export { service } from './lib/service';
export { browser } from './lib/browser';
export { timerange } from './lib/timerange';
export { getTransactionMetrics } from './lib/utils/get_transaction_metrics';
export { getSpanDestinationMetrics } from './lib/utils/get_span_destination_metrics';
export { getObserverDefaults } from './lib/defaults/get_observer_defaults';
export { getChromeUserAgentDefaults } from './lib/defaults/get_chrome_user_agent_defaults';
export { toElasticsearchOutput } from './lib/output/to_elasticsearch_output';
export type {
ElasticsearchOutput,
ElasticsearchOutputWriteTargets,
} from './lib/output/to_elasticsearch_output';
export { getBreakdownMetrics } from './lib/utils/get_breakdown_metrics';
export { cleanWriteTargets } from './lib/utils/clean_write_targets';
export { getWriteTargets } from './lib/utils/get_write_targets';
Expand Down

0 comments on commit bb923aa

Please sign in to comment.