@tempots/std

JSONPrimitive type

Represents a JSON primitive value. It can be a string, boolean, number, or Nothing (null or undefined).

Signature:

export type JSONPrimitive = string | boolean | number | Nothing;

References: Nothing