Skip to content

Commit 1a0ff50

Browse files
authored
chore: export the types and not just the consts for the experiments (#7662)
export the types and not just the consts for the experiments
1 parent 858a2be commit 1a0ff50

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

packages/compass-telemetry/src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@ export type {
88

99
export { CompassExperimentationProvider } from './experimentation-provider';
1010
export {
11-
ExperimentTestNames as ExperimentTestName,
12-
ExperimentTestGroups as ExperimentTestGroup,
11+
ExperimentTestNames,
12+
type ExperimentTestName,
13+
ExperimentTestGroups,
14+
type ExperimentTestGroup,
1315
} from './growth-experiments';
1416

1517
// @experiment Skills in Atlas | Jira Epic: CLOUDP-346311

packages/compass-web/src/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ export type { WorkspaceTab } from '@mongodb-js/workspace-info';
55
export type { OpenWorkspaceOptions } from '@mongodb-js/compass-workspaces';
66
export {
77
CompassExperimentationProvider,
8-
ExperimentTestName,
9-
ExperimentTestGroup,
8+
ExperimentTestNames,
9+
ExperimentTestGroups,
10+
type ExperimentTestName,
11+
type ExperimentTestGroup,
1012
} from '@mongodb-js/compass-telemetry';
1113
export type { CollectionTabInfo } from '@mongodb-js/workspace-info';
1214
export type {

0 commit comments

Comments
 (0)