UNPKG

@stellar/stellar-sdk

Version:

A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.

10 lines (8 loc) 194 B
declare module "base32.js" { interface Base32Codec { decode(encoded: string): Buffer; encode(decoded: Uint8Array): string; } const base32: Base32Codec; export default base32; }