node-dextrin - v0.1.0
    Preparing search index...

    Type Alias DXNValue

    DXNValue:
        | null
        | boolean
        | bigint
        | number
        | values/decimal
        | values/rational
        | string
        | values/char
        | values/symbol
        | symbol
        | values/keyword
        | values/list
        | values/tuple
        | Map<unknown, unknown>
        | values/ordered-map
        | Set<unknown>
        | values/sorted-set
        | values/struct
        | DXNArray
        | values/date
        | values/time
        | values/timestamp
        | values/date-time
        | values/duration
        | values/uuid
        | values/uri
        | values/bytes
        | values/regex
        | values/custom-tag

    DXN array (native JS Array) — split into its own named alias rather than inlined as DXNValue[] directly inside the union above: TS's JSDoc @typedef circularity checker rejects a typedef whose own body contains its own name (DXNValue[] inside DXNValue itself), even though the equivalent mutual recursion through a second name — this indirection — is fine and resolves correctly.