UNPKG

ontology-ts-sdk

Version:

Comprehensive TypeScript library for the Ontology blockchain.

8 lines (7 loc) 202 B
import { StringReader } from '../utils'; export default class Fixed64 { static deserialize(sr: StringReader): Fixed64; value: string; constructor(value?: string); serialize(): string; }