Variable AllowedMsgAllowance
Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): AllowedMsgAllowance
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): AllowedMsgAllowance
-
Type Parameters
-
I extends {
allowance?: { typeUrl?: string | undefined; value?: Uint8Array | undefined; };
allowedMessages?: string[];
} & {
allowance?: {
typeUrl?: string;
value?: Uint8Array;
} & ({ typeUrl?: string | undefined; value?: Uint8Array | undefined; }) & { [ K in string | number | symbol]: never };
allowedMessages?: string[] & string[] & { [ K in string | symbol]: never };
} & { [ K in string | number | symbol]: never }
-
toJSON:function