If I want to define the type of a variable that will be used with setInterval in the following code snippet:
this.autoSaveInterval = setInterval(function(){
if(this.car.id){
this.save();
}
else{
this.create();
}
}.bind(this), 50000);
What type should be assigned to this.autosaveInterval variable?