Interface NextMessage

interface NextMessage {
    id: string;
    payload: ExecutionResult<unknown, unknown>;
    type: "next";
}

Properties

Properties

id: string
payload: ExecutionResult<unknown, unknown>
type: "next"