Skip to content
This repository was archived by the owner on Jul 29, 2021. It is now read-only.

Latest commit

 

History

History
36 lines (26 loc) · 479 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 479 Bytes

Angular HttpClient Decorators

Build Status

Get

@Get({
  url: 'url: 'https://reqres.in/api/users'
})

UrlParam

getUsers(@UrlParam('id') id:string): string {
  return empty();
}

Put

@Put({
  url: 'url: 'https://reqres.in/api/users'
})

Payload

updateUser(@Payload() user: User) {
  return empty();
}