UNPKG

cborkit

Version:

A modern, extensible CBOR (Concise Binary Object Representation) library for TypeScript and JavaScript.

13 lines (11 loc) 313 B
declare class Simple { readonly value: number; constructor(value: number | bigint); static false: Simple; static true: Simple; static null: Simple; static undefined: Simple; static boolean(value: boolean): Simple; static from(value: number | bigint): Simple; } export { Simple };