Prelude API
    Preparing search index...

    Type Alias Frame

    Frame:
        | { channel?: string; message: unknown; type: "send" }
        | { channel?: string; id: number; message: unknown; type: "ask" }
        | { channel?: string; id: number; type: "reply"; value: unknown }
        | { channel?: string; error: SerializedError; id: number; type: "error" }

    Frames exchanged between a RemoteActor and serve. Frames are plain data so any transport that can move JSON or structured clones can carry them.