(message: string)
| 990 | |
| 991 | /** @internal */ |
| 992 | export function emitWarning(message: string): void { |
| 993 | return process.emitWarning(message, { code: MONGODB_WARNING_CODE } as any); |
| 994 | } |
| 995 | |
| 996 | const emittedWarnings = new Set(); |
| 997 | /** |
no outgoing calls
no test coverage detected