[DEV] wrong return type

This commit is contained in:
Edouard DUPIN 2020-10-24 00:19:42 +02:00
parent 768105f1e9
commit 578054df58

View File

@ -112,23 +112,23 @@ export class BddService {
}); });
} }
getType():DataInterface { getType():any {
return this.get("type"); return this.get("type");
} }
getSeries():DataInterface { getSeries():any {
return this.get("series"); return this.get("series");
} }
getSeason():DataInterface { getSeason():any {
return this.get("season"); return this.get("season");
} }
getUniverse():DataInterface { getUniverse():any {
return this.get("universe"); return this.get("universe");
} }
getVideo():DataInterface { getVideo():any {
return this.get("video"); return this.get("video");
} }
} }