import { Function } from './Function.js'; import { Primitive } from './Primitive.js'; /** * Matches all types except `unknown`. */ type Any = Function | object | Primitive; export type { Any };