(foo: any, bar: any, baz: any)
| 776 | |
| 777 | // @ts-expect-error |
| 778 | find(foo: any, bar: any, baz: any) { |
| 779 | expect(foo).toBe('foo') |
| 780 | expect(bar).toBe('bar') |
| 781 | expect(baz).toBe('baz') |
| 782 | return super.find(obj => obj.id === foo) |
| 783 | } |
| 784 | |
| 785 | // @ts-expect-error |
| 786 | findIndex(foo: any, bar: any, baz: any) { |
no outgoing calls
no test coverage detected