| 1 | export interface CallBackObject<T> { |
| 2 | name: string; |
| 3 | callbackUrl: string; |
| 4 | method: string; |
| 5 | requestBody: { |
| 6 | type: T; |
| 7 | }; |
| 8 | expectedResponse: { |
| 9 | status: number; |
| 10 | description?: string; |
| 11 | }; |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…