TypeScript · 221 bytes Raw Blame History
1 // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
3 export type JsonValue = number | string | boolean | Array<JsonValue> | { [key in string]?: JsonValue } | null;