| 125 | } |
| 126 | |
| 127 | class SomeService implements CRUDService { |
| 128 | create(body: any) { |
| 129 | return body; |
| 130 | } |
| 131 | findById(id: any) { |
| 132 | throw new Error('Method not implemented.'); |
| 133 | } |
| 134 | update(id: any, body: any) { |
| 135 | throw new Error('Method not implemented.'); |
| 136 | } |
| 137 | deleteById(id: any) { |
| 138 | throw new Error('Method not implemented.'); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | @ApiInfo({ |
| 143 | title: 'Some API', |
nothing calls this directly
no outgoing calls
no test coverage detected