Skip to content

Instantly share code, notes, and snippets.

@angelnikolov
Last active May 6, 2018 09:53
Show Gist options
  • Save angelnikolov/58766cee03cafe2c1dcc00ac6eb46ff3 to your computer and use it in GitHub Desktop.
Save angelnikolov/58766cee03cafe2c1dcc00ac6eb46ff3 to your computer and use it in GitHub Desktop.
no-decorator
getProducts(take?: number, skip?: number) {
return this.http.get(
`${environment.api}/products/latest?take=${take}&skip=${skip}`
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment