| 22 | }; |
| 23 | |
| 24 | export interface DataHandledable extends EventEmitter { |
| 25 | stream: NetStream; |
| 26 | status: string; |
| 27 | condition: Condition | null; |
| 28 | commandQueue: Deque<CommandItem>; |
| 29 | |
| 30 | disconnect(reconnect: boolean): void; |
| 31 | recoverFromFatalError( |
| 32 | commandError: Error, |
| 33 | err: Error, |
| 34 | options: FlushQueueOptions |
| 35 | ): void; |
| 36 | handleReconnection(err: Error, item: CommandItem): void; |
| 37 | } |
| 38 | |
| 39 | interface ParserOptions { |
| 40 | stringNumbers: boolean; |
no outgoing calls
no test coverage detected
searching dependent graphs…