Skip to content

Instantly share code, notes, and snippets.

@ktutnik
Last active May 11, 2019 11:02
Show Gist options
  • Save ktutnik/8fcd3c3b93ef9e2582bf7f3b1fb8a56d to your computer and use it in GitHub Desktop.
Save ktutnik/8fcd3c3b93ef9e2582bf7f3b1fb8a56d to your computer and use it in GitHub Desktop.
export class TodoController {
@put('/todos/{id}')
async replaceTodo(
@param.path.number('id') id: number,
@requestBody() todo: Todo): Promise<boolean> {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment