/** * whether `T` is the `any` type * * @since 0.0.2 */ export type IsAny = 0 extends (1 & T) ? true : false; //# sourceMappingURL=is-any.d.ts.map