(code: string, message: string)
| 1 | export default function makeJavaBridge() { |
| 2 | window.bridge = { |
| 3 | error(code: string, message: string) { |
| 4 | console.log(code, message) |
| 5 | }, |
| 6 | send(text: string) { |
| 7 | console.log(text) |
| 8 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected