(a: number, b: number)
| 2 | |
| 3 | // Note: Has to be exported |
| 4 | export function sum(a: number, b: number) { |
| 5 | return a + b; |
| 6 | } |
| 7 | |
| 8 | const handle = spawn(move(5, 10), async (n1, n2) => { |
| 9 | const { sum } = await import("./function_in_same_file.ts"); |
no outgoing calls
no test coverage detected