UNPKG

ccxt

Version:

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

15 lines (14 loc) 413 B
import { Coder } from "./abstract-coder.js"; import type { Reader, Writer } from "./abstract-coder.js"; /** * Clones the functionality of an existing Coder, but without a localName * * @_ignore */ export declare class AnonymousCoder extends Coder { private coder; constructor(coder: Coder); defaultValue(): any; encode(writer: Writer, value: any): number; decode(reader: Reader): any; }