UNPKG

@usherlabs/ccxt

Version:

A JavaScript cryptocurrency trading library with support for 100+ exchanges + optional Verity zkTLS proof of data source.

13 lines (12 loc) 385 B
import { Typed } from "../typed.js"; import { DynamicBytesCoder } from "./bytes.js"; import type { Reader, Writer } from "./abstract-coder.js"; /** * @_ignore */ export declare class StringCoder extends DynamicBytesCoder { constructor(localName: string); defaultValue(): string; encode(writer: Writer, _value: string | Typed): number; decode(reader: Reader): any; }