(teamId?: TeamType['id'])
| 214 | |
| 215 | // # Events |
| 216 | public events(teamId?: TeamType['id']): ApiRequest { |
| 217 | return this.projectsDetail(teamId).addPathComponent('events') |
| 218 | } |
| 219 | |
| 220 | public event(id: EventType['id'], teamId?: TeamType['id']): ApiRequest { |
| 221 | return this.events(teamId).addPathComponent(id) |
no test coverage detected