import { Any } from './Any.js'; import { Primitive } from './Primitive.js'; import './Function.js'; /** * Exclude primitive types from a type. */ type NotPrimitive = U extends Primitive ? never : U; export type { NotPrimitive };