mirror of
https://github.com/status-im/nim-json-serialization.git
synced 2025-02-17 04:27:12 +00:00
19 lines
290 B
Nim
19 lines
290 B
Nim
import
|
|
serialization/errors
|
|
|
|
export
|
|
errors
|
|
|
|
type
|
|
JsonMode* = enum
|
|
Relaxed
|
|
Portable
|
|
|
|
JsonError* = object of SerializationError
|
|
|
|
const
|
|
defaultJsonMode* = JsonMode.Relaxed
|
|
minPortableInt* = -9007199254740991 # -2**53 + 1
|
|
maxPortableInt* = 9007199254740991 # +2**53 - 1
|
|
|