Skip to content

Commit 48de213

Browse files
committed
common: Fix type exports
1 parent f39fbb0 commit 48de213

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/common/src/index.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export * from "./cursorlessCommandIds";
22
export * from "./testUtil/extractTargetedMarks";
33
export { default as FakeIDE } from "./ide/fake/FakeIDE";
4-
export { Message } from "./ide/spy/SpyMessages";
5-
export { SpyIDERecordedValues } from "./ide/spy/SpyIDE";
4+
export type { Message } from "./ide/spy/SpyMessages";
5+
export type { SpyIDERecordedValues } from "./ide/spy/SpyIDE";
66
export { default as SpyIDE } from "./ide/spy/SpyIDE";
77
export { HatStability } from "./ide/types/HatStability";
88
export * from "./util";
@@ -11,8 +11,9 @@ export { getKey, splitKey } from "./util/splitKey";
1111
export { hrtimeBigintToSeconds } from "./util/timeUtils";
1212
export * from "./util/walkSync";
1313
export * from "./util/walkAsync";
14-
export { Listener, Notifier } from "./util/Notifier";
15-
export { TokenHatSplittingMode } from "./ide/types/Configuration";
14+
export { Notifier } from "./util/Notifier";
15+
export type { Listener } from "./util/Notifier";
16+
export type { TokenHatSplittingMode } from "./ide/types/Configuration";
1617
export * from "./ide/types/ide.types";
1718
export * from "./ide/types/Capabilities";
1819
export * from "./ide/types/CommandId";

0 commit comments

Comments
 (0)