| 1 | // internal types |
| 2 | |
| 3 | interface Plugin { |
| 4 | init?: (context: any) => any |
| 5 | load?: () => any |
| 6 | default?: Function | any |
| 7 | } |
| 8 | |
| 9 | interface RcpAnnouceEvent extends CustomEvent { |
| 10 | errorHandler: () => any |
nothing calls this directly
no outgoing calls
no test coverage detected