12 lines
554 B
TypeScript
12 lines
554 B
TypeScript
export declare const version: string;
|
|
export declare const protocolVersion = 17;
|
|
/** Initial client protocol. */
|
|
export declare const CLIENT_PROTOCOL_DEFAULT = 0;
|
|
/** Replaces RPC v1 protocol with a v2 data streams based one to support unlimited request /
|
|
* response payload length. */
|
|
export declare const CLIENT_PROTOCOL_DATA_STREAM_RPC = 1;
|
|
/** The client protocol version indicates what level of support that the client has for
|
|
* client <-> client api interactions. */
|
|
export declare const clientProtocol = 1;
|
|
//# sourceMappingURL=version.d.ts.map
|