SerializeToJson
SerializeToJson<
T>:TextendsJsonSerializableSet<infer S> ?ReadonlyArray<S> :TextendsJsonSerializableObject?{ [P in keyof T]: SerializeToJson<T[P]> }:TextendsJsonSerializableArray?SerializeToJson<T[number]>[] :BigIntToHex<SetToHex<T>>
A helper type that converts a widened JSON-serializable value to a JSON-serializable value. It replaces bigint with hex strings and sets with arrays.
Type parameters
• T
Source
packages/utils/src/SerializeToJson.ts:43