diff --git a/sdks/actor/runtime/src/event.ts b/sdks/actor/runtime/src/event.ts index 353ae3a3c..e274e6a14 100644 --- a/sdks/actor/runtime/src/event.ts +++ b/sdks/actor/runtime/src/event.ts @@ -1,3 +1,4 @@ +import type { Metadata } from "@rivet-gg/actor-core"; import type * as wsToClient from "@rivet-gg/actor-protocol/ws/to_client"; import * as wsToServer from "@rivet-gg/actor-protocol/ws/to_server"; import type { WSMessageReceive } from "hono/ws"; @@ -6,7 +7,6 @@ import type { Connection, IncomingWebSocketMessage } from "./connection"; import * as errors from "./errors"; import { Rpc } from "./rpc"; import { assertUnreachable } from "./utils"; -import type { Metadata } from "@rivet-gg/actor-core"; interface MessageEventConfig { protocol: { maxIncomingMessageSize: number };