Skip to content

Commit

Permalink
Do not export node-specific names
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan committed Nov 20, 2023
1 parent 343ca78 commit d395eda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,7 @@
*/

export * from './autoLoader';
export {
InstrumentationBase,
InstrumentationModuleDefinition,
InstrumentationModuleFile,
InstrumentationNodeModuleDefinition,
InstrumentationNodeModuleFile,
} from './platform/index';
export { InstrumentationBase } from './platform/index';
export * from './types';
export * from './types_internal';
export * from './utils';
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

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

export {
InstrumentationBase,
InstrumentationModuleDefinition,
InstrumentationModuleFile,
InstrumentationNodeModuleDefinition,
InstrumentationNodeModuleFile,
} from './node';
export { InstrumentationBase } from './node';

0 comments on commit d395eda

Please sign in to comment.