build(aio): upgrade preview server dependencies

This commit is contained in:
Georgios Kalpakas
2017-06-17 21:03:10 +03:00
committed by Matias Niemelä
parent 3ce9d51a9c
commit 1b13bdea4b
10 changed files with 601 additions and 531 deletions

View File

@ -63,7 +63,7 @@ export class GithubApi {
return items;
}
return this.getPaginated(pathname, baseParams, currentPage + 1).then(moreItems => [...items, ...moreItems]);
return this.getPaginated<T>(pathname, baseParams, currentPage + 1).then(moreItems => [...items, ...moreItems]);
});
}