Last active
August 27, 2023 17:37
-
-
Save kdaisho/1ae9d24627ac0bf7499eab590a719f13 to your computer and use it in GitHub Desktop.
JSON Type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Primitive = string | number | boolean | null | |
type JsonObject = { [k: string]: JsonValue } | |
type JsonArray = JsonValue[] | |
export type JsonValue = Primitive | JsonArray | JsonObject |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment