Type Alias Matches<T, U>Internal

Matches<T, U>: T extends U
    ? U extends T
        ? true
        : false
    : false

The internal utility type to match the given types.

Type Parameters

  • T
  • U