Variable $TransactionValidityErrorConst

$TransactionValidityError: $.Shape<{
    type: "Invalid";
    value:
        | {
            type: "Call";
        }
        | {
            type: "Payment";
        }
        | {
            type: "Future";
        }
        | {
            type: "Stale";
        }
        | {
            type: "BadProof";
        }
        | {
            type: "AncientBirthBlock";
        }
        | {
            type: "ExhaustsResources";
        }
        | {
            type: "Custom";
            value: number;
        }
        | {
            type: "BadMandatory";
        }
        | {
            type: "MandatoryValidation";
        }
        | {
            type: "BadSigner";
        };
} | {
    type: "Unknown";
    value: {
        type: "Custom";
        value: number;
    } | {
        type: "CannotLookup";
    } | {
        type: "NoUnsignedValidator";
    };
}, {
    type: "Invalid";
    value:
        | {
            type: "Call";
        }
        | {
            type: "Payment";
        }
        | {
            type: "Future";
        }
        | {
            type: "Stale";
        }
        | {
            type: "BadProof";
        }
        | {
            type: "AncientBirthBlock";
        }
        | {
            type: "ExhaustsResources";
        }
        | {
            type: "Custom";
            value: number;
        }
        | {
            type: "BadMandatory";
        }
        | {
            type: "MandatoryValidation";
        }
        | {
            type: "BadSigner";
        };
} | {
    type: "Unknown";
    value: {
        type: "Custom";
        value: number;
    } | {
        type: "CannotLookup";
    } | {
        type: "NoUnsignedValidator";
    };
}> = ...