/**
 * 📘 Definition of all primitive types.
 */
export type PrimitiveTypes =
	| boolean
	| number
	| string
	| object
	| symbol
	| bigint
	| Function
	| undefined
	| null
