(foo: any, bar: any, baz: any)
| 799 | } |
| 800 | |
| 801 | findLastIndex(foo: any, bar: any, baz: any) { |
| 802 | expect(foo).toBe('foo') |
| 803 | expect(bar).toBe('bar') |
| 804 | expect(baz).toBe('baz') |
| 805 | return super.findIndex(obj => obj.id === bar) |
| 806 | } |
| 807 | |
| 808 | // @ts-expect-error |
| 809 | forEach(foo: any, bar: any, baz: any) { |
no test coverage detected