diff --git a/src/core/index.js b/src/core/index.js index 743380d7a..34269c5bc 100644 --- a/src/core/index.js +++ b/src/core/index.js @@ -12,8 +12,6 @@ const recentRequests = new LimitedSet(20) const { navigator } = session export { navigator, session, cache, recentRequests, PageRenderer, PageSnapshot, FrameRenderer } -export { StreamActions } from "./streams/stream_actions" - /** * Starts the main session. * This initialises any necessary observers such as those to monitor diff --git a/src/index.js b/src/index.js index b76e23871..2eea58be4 100644 --- a/src/index.js +++ b/src/index.js @@ -11,3 +11,4 @@ Turbo.start() export * from "./core" export * from "./elements" export * from "./http" +export { StreamActions } from "./core/streams/stream_actions"