/** * whether `T` is the `never` type * * @since 0.0.2 */ export type IsNever = [ T ] extends [never] ? true : false; //# sourceMappingURL=is-never.d.ts.map