| 13 | type SpanName = 'schema' | 'host' | 'path' | 'query' | 'fragment' | 'url'; |
| 14 | |
| 15 | export interface IURLResult { |
| 16 | readonly entry: { |
| 17 | readonly normal: Node; |
| 18 | readonly connect: Node; |
| 19 | }; |
| 20 | readonly exit: { |
| 21 | readonly toHTTP: Node; |
| 22 | readonly toHTTP09: Node; |
| 23 | }; |
| 24 | } |
| 25 | |
| 26 | type SpanTable = Map<SpanName, source.Span>; |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected