Навешиваю на метод декоратор. В одном случае всё нормально работает:
@GET("/items")
public getAll(): Observable<{}> { return null; };
А если не указываю тип, то получаю ошибку:
TS1249:A decorator can only decorate a method implementation, not an overload
TS2391:Function implementation is missing or not immediately following the declaration
@GET("/items")
public getAll();
Что за дела?