/** * A type that can be converted to a string using template literal syntax. */ export type Stringifiable = | string | number | bigint | boolean | null | undefined