J'obtiens une erreur avec le code TypeScript suivant :
///<reference path='../../../Shared/typescript/jquery.d.ts' />
///<reference path='../../../Shared/typescript/jqueryStatic.d.ts' />
function accessControls(action: Action) {
$('#logoutLink')
.click(function () {
var $link = $(this);
window.location = $link.attr('data-href');
});
}
Je reçois une erreur soulignée en rouge pour ce qui suit :
$link.attr('data-href');
Le message dit :
Cannot convert 'string' to 'Location': Type 'String' is missing property 'reload' from type 'Location'
Quelqu'un sait-il ce que cela signifie ?