From f5bc4c55dfc2c8e5a28149b01d0357f5f35f6712 Mon Sep 17 00:00:00 2001 From: Tate Thurston Date: Tue, 26 Apr 2022 13:32:20 -0700 Subject: [PATCH] Add isDelimited to BinaryReader --- types/google-protobuf/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/google-protobuf/index.d.ts b/types/google-protobuf/index.d.ts index 608d49addb2500..893bd7a85cd92a 100644 --- a/types/google-protobuf/index.d.ts +++ b/types/google-protobuf/index.d.ts @@ -242,6 +242,7 @@ export class BinaryReader { getBuffer(): Uint8Array; getFieldNumber(): number; getWireType(): BinaryConstants.WireType; + isDelimited(): boolean; isEndGroup(): boolean; getError(): boolean; setBlock(bytes?: ByteSource, start?: number, length?: number): void;