| 1 | import { rcp } from './hooks'; |
| 2 | |
| 3 | interface EventData { |
| 4 | data: any; |
| 5 | uri: string; |
| 6 | eventType: 'Create' | 'Update' | 'Delete'; |
| 7 | } |
| 8 | |
| 9 | interface ApiListener { |
| 10 | (message: EventData): void; |
nothing calls this directly
no outgoing calls
no test coverage detected