DecProto: { create<I>(base?): DecProto; decode(input,
length?): DecProto; encode(message,
writer?): Writer; fromJSON(object): DecProto; fromPartial<I>(object): DecProto; toJSON(message): unknown; } Type declaration
create:function
- create<I>(base?): DecProto
Type Parameters
- I extends {
dec?: string;
} & {
dec?: string;
} & {
[K in string | number | symbol]: never
}
decode:function
- decode(input, length?): DecProto
Parameters
- input: Uint8Array | Reader
Optional
length: number
encode:function
- encode(message, writer?): Writer
Returns Writer
fromJSON:function
fromPartial:function
- fromPartial<I>(object): DecProto
Type Parameters
- I extends {
dec?: string;
} & {
dec?: string;
} & {
[K in string | number | symbol]: never
}
toJSON:function
- toJSON(message): unknown
Returns unknown