UNPKG

@cuppachino/type-space

Version:

A collection of type utilities for TypeScript.

5 lines (4 loc) 166 B
/** * A type that can be converted to a string using template literal syntax. */ export type Stringifiable = string | number | bigint | boolean | null | undefined;