/// import { Type } from 'protobufjs'; export interface IProtobufType { get underlyingType(): Type; encode(message: TIn): Uint8Array; decode(bytes: Buffer | Uint8Array): TOut; }