Type Alias $<T, $O>

$<T, $O>: $ResolveOptions<[$O["exact"], $ExactDefault]> extends true
    ? $IsDistributive<$O, {
        $else: IsObject._N<T, $O>;
        $then: IsObject._D<T, $O>;
    }>
    : Assignable.$<T, object, $O>

🧰 type util

Validate if T is object or object literals.

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

Type Parameters