(...y: any[])
| 76 | export const Mock = (x?: any) => { |
| 77 | let args: any[], |
| 78 | f = (...y: any[]) => ((args = y), Promise.resolve(x)) |
| 79 | // @ts-ignore |
| 80 | return (f.args = () => args), f |
| 81 | } |
nothing calls this directly
no outgoing calls
no test coverage detected