@fanoutio/subscriptions-transport-ws-over-http
Version:
A websocket-over-http transport for GraphQL subscriptions
13 lines (12 loc) • 400 B
TypeScript
export default class MessageTypes {
static GQL_CONNECTION_INIT: string;
static GQL_CONNECTION_ACK: string;
static GQL_CONNECTION_ERROR: string;
static GQL_CONNECTION_KEEP_ALIVE: string;
static GQL_CONNECTION_TERMINATE: string;
static GQL_START: string;
static GQL_DATA: string;
static GQL_ERROR: string;
static GQL_COMPLETE: string;
static GQL_STOP: string;
}