shithub
tenseleyflow
/
claudex
/
Sign in
Sign up
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
claudex
Public
Watch
0
Fork
0
Star
0
claudex
/
src
/
lib
/
ipc
/
generated
/
serde_json
/
JsonValue.ts
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
;