mirror of
https://github.com/status-im/nim-json-serialization.git
synced 2025-02-18 13:06:25 +00:00
13 lines
238 B
Nim
13 lines
238 B
Nim
|
type
|
||
|
JsonMode* = enum
|
||
|
Relaxed
|
||
|
Portable
|
||
|
|
||
|
JsonError* = object of CatchableError
|
||
|
|
||
|
const
|
||
|
defaultJsonMode* = JsonMode.Relaxed
|
||
|
minPortableInt* = -9007199254740991 # -2**53 + 1
|
||
|
maxPortableInt* = 9007199254740991 # +2**53 - 1
|
||
|
|