Sha256: 2dffa80b0e853c77a678f78f2b9534932b7fbe352b200f8fa6e158b1cde2f2b4

Contents?: true

Size: 468 Bytes

Versions: 1

Compression:

Stored size: 468 Bytes

Contents

declare const create: <T>(options?: IOptions<T>) => {
    parse: (source: string, reviver?: (holder: object, key: string, value: any) => any) => any;
    stringify: (value: any, replacer?: string[] | ((holder: object, key: string, value: any) => string), space?: string | number) => string;
};
export = create;
interface IOptions<T> {
    strict: boolean;
    parse: (long: string) => T;
    stringify: (long: T) => string;
    isInstance: (some: any) => some is T;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
waves_lib-0.1.0 js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.d.ts