UNPKG

@cuppachino/type-space

Version:

A collection of type utilities for TypeScript.

5 lines (4 loc) 90 B
/** * Shorthand `extends` check. */ export type Assert<T, U> = T extends U ? T : never;