(foo: any, bar: any, baz: any)
| 814 | |
| 815 | // @ts-expect-error |
| 816 | map(foo: any, bar: any, baz: any) { |
| 817 | expect(foo).toBe('foo') |
| 818 | expect(bar).toBe('bar') |
| 819 | expect(baz).toBe('baz') |
| 820 | return super.map(obj => obj.value) |
| 821 | } |
| 822 | |
| 823 | // @ts-expect-error |
| 824 | some(foo: any, bar: any, baz: any) { |
no outgoing calls
no test coverage detected