Amazon Vinyl
    Preparing search index...

    Type Alias Equal<Left, Right>

    Equal: [Left] extends [Right] ? [Right] extends [Left] ? true : false : false

    A type that equals true if Left and Right are loosely equal, that is, that Left extends Right and Right extends Left. This will always equal true or false, and never the union true | false

    Type Parameters

    • Left
    • Right