Result of attempting to send a chunk
| 39 | |
| 40 | /** Result of attempting to send a chunk */ |
| 41 | interface ChunkSendResult { |
| 42 | success: boolean; |
| 43 | errorType?: ChunkSizeError; |
| 44 | originalError?: Error; |
| 45 | } |
| 46 | |
| 47 | /** Configuration for adaptive chunking */ |
| 48 | interface AdaptiveChunkConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…