aboutsummaryrefslogtreecommitdiff
path: root/utils/types/json.ts
blob: 0aa12c86e30922eb17da81c5b7653394f57e1bff (plain)
1
2
3
4
5
6
7
8
/** Values that round-trip through JSON.stringify / JSON.parse. */
export type JsonValue =
  | string
  | number
  | boolean
  | null
  | readonly JsonValue[]
  | { readonly [key: string]: JsonValue | undefined }