@tendermint/types
Version:
TypeScript definitions for Cosmos and Tendermint
30 lines (24 loc) • 445 B
TypeScript
/**
* A Base64-encoded string.
*/
export type Base64String = string;
/**
* A Bech32-encoded string.
*/
export type Bech32String = string;
/**
* A "raw" binary-encoded string.
*/
export type BinaryString = string;
/**
* A JSON-encoded string.
*/
export type JSONString = string;
/**
* A hexadecimal-encoded string
*/
export type HexString = string;
/**
* A Unicode Scalar Values-encoded string
*/
export type USVString = string;