| 19 | const nonIdentifierChars = /[^a-z$_0-9]/i; |
| 20 | |
| 21 | export interface ISoapError extends Error { |
| 22 | response?; |
| 23 | body?; |
| 24 | } |
| 25 | |
| 26 | //eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging |
| 27 | export interface Client { |
nothing calls this directly
no outgoing calls
no test coverage detected