Add the minorVersion field to the HandshakeResponse in the TS client for 3.0 (#2657)

This commit is contained in:
Mikael Mengistu 2018-07-18 15:47:52 -07:00 committed by GitHub
parent bd0d297111
commit 4752d45e0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -10,6 +10,7 @@ export interface HandshakeRequestMessage {
export interface HandshakeResponseMessage {
readonly error: string;
readonly minorVersion: number;
}
export class HandshakeProtocol {