import { IsAny } from "."; /** * whether `T` is the `unknown` type * * @since 0.0.2 */ export type IsUnknown = IsAny extends true ? false : unknown extends T ? true : false; //# sourceMappingURL=is-unknown.d.ts.map