/** * @file JsonPrimitive * @module tsconfig-types/JsonPrimitive */ /** * Union of primitive `JSON` values. * * @see https://developer.mozilla.org/docs/Glossary/Primitive * @see https://restfulapi.net/json-data-types */ type JsonPrimitive = boolean | number | string | null export type { JsonPrimitive as default }