| 14 | import type EventSender from 'InspectorAgent'; |
| 15 | |
| 16 | interface Agent { |
| 17 | constructor(eventSender: EventSender): void |
| 18 | } |
| 19 | |
| 20 | // Flow doesn't support static declarations in interface |
| 21 | type AgentClass = Class<Agent> & { DOMAIN: string }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…