UNPKG

ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges

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; }