Type Alias Any

Any:
    | object
    | string
    | number
    | bigint
    | boolean
    | symbol
    | null
    | undefined

A literal value of any type. This type is used to enforce the narrowing of generic types.