mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 21:49:15 +00:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import amino from "@tendermint/amino-js";
|
|
export declare type AminoTx = amino.Tx & {
|
|
readonly value: amino.StdTx;
|
|
};
|
|
export declare function isAminoStdTx(
|
|
txValue: amino.TxValue
|
|
): txValue is amino.StdTx;
|