UNPKG

@usherlabs/ccxt

Version:

A JavaScript cryptocurrency trading library with support for 100+ exchanges. Verifiable data powered by Verity.

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