Amazon Vinyl
    Preparing search index...

    Type Alias StrictEqual<Left, Right>

    StrictEqual: <T>() => T extends Left ? 0 : 1 extends <T>() => T extends Right
        ? 0
        : 1
        ? Equal<Left, Right>
        : false

    A type that equals true if Left and Right are strictly equal. Works with complex objects, readonly, and optional modifiers. Works with method input arguments. This will always equal true or false, and never the union true | false

    Type Parameters

    • Left
    • Right