Type Alias $<T, $O>

$: $IsDistributive<
    $O,
    {
        $else: IsNotBigintLiteral._N<T, $O>;
        $then: IsNotBigintLiteral._D<T, $O>;
    },
>

🧰 type util

Validate if T is not number literals.

This is a type util for building custom types. It does not check against special types.

Type Parameters