| 13 | import { ContextUtils } from class="st">'@nestjs/core/helpers/context-utils'; |
| 14 | |
| 15 | export interface MessageMappingProperties { |
| 16 | message: any; |
| 17 | methodName: string; |
| 18 | callback: (...args: any[]) => Observable<any> | Promise<any>; |
| 19 | isAckHandledManually: boolean; |
| 20 | } |
| 21 | |
| 22 | export class GatewayMetadataExplorer { |
| 23 | private readonly contextUtils = new ContextUtils(); |
nothing calls this directly
no outgoing calls
no test coverage detected