Preview:```ts
// the context of this question is the TS official FAQ
// section header: "Primitives are { }, and { } Doesn't Mean object"
// https://github.com/microsoft/TypeScript/wiki/FAQ#primitives-are---and---doesnt-mean-object
// so given this type alias...
type PrimitiveValueTypes = string | number | symbol | bigint | boolean;
...```
You can choose specific lines to embed by selecting them before copying the link.