import { Join } from "./join"; /** * Transform numbers, booleans, strings, bigints to string. * ```ts * // 'true' * type Result = Stringify * * ``` */ export type Stringify = T extends number | boolean | string | bigint ? `${T}` : never;