UNPKG

137 BTypeScriptView Raw
1import { IsAny } from "../is-any";
2export type IsUnknown<Type> = IsAny<Type> extends true ? false : unknown extends Type ? true : false;