Si je souhaite attribuer un type à une variable qui se verra ensuite attribuer un setInterval, par exemple :
this.autoSaveInterval = setInterval(function(){
if(this.car.id){
this.save();
}
else{
this.create();
}
}.bind(this), 50000);
Quel type doit être attribué au vairable this.autosaveInterval ?