/** * type union of JS primitives. * @see https://developer.mozilla.org/en-US/docs/Glossary/Primitive * * @since 0.0.2 */ export type Primitive = symbol | string | number | bigint | boolean | null | undefined; //# sourceMappingURL=primitive.d.ts.map