| 7 | import { PlatformInformation } from './platform'; |
| 8 | |
| 9 | export interface BaseEvent { |
| 10 | type: EventType; |
| 11 | } |
| 12 | |
| 13 | export class EventWithMessage implements BaseEvent { |
| 14 | type = EventType.EventWithMessage; |
nothing calls this directly
no outgoing calls
no test coverage detected