Skip to content

Instantly share code, notes, and snippets.

@stumpam
Created March 3, 2020 19:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stumpam/c0c435f58d433e0ab5e7399524559655 to your computer and use it in GitHub Desktop.
Save stumpam/c0c435f58d433e0ab5e7399524559655 to your computer and use it in GitHub Desktop.
JSON typescript type
type JSON = string | number | boolean | null | JSON[] | { [key: string]: JSON };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment