Skip to content

WebSocketTransportFrame

type WebSocketTransportFrame =
| {
sessionId: string;
timestamp: string;
type: "connected";
}
| {
sessionId: string;
timestamp: string;
type: "cancelled";
}
| {
type: "pong";
};