UNPKG

@younho9/types

Version:

A set of utility types for TypeScript

11 lines (9 loc) 250 B
import {Primitive} from 'type-fest'; /** * Alternative of `any` * * {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#javascript_types} * * @category Alternative */ export type AlternativeAny = Primitive | object;