(foo: any, bar: any, baz: any)
| 822 | |
| 823 | // @ts-expect-error |
| 824 | some(foo: any, bar: any, baz: any) { |
| 825 | expect(foo).toBe('foo') |
| 826 | expect(bar).toBe('bar') |
| 827 | expect(baz).toBe('baz') |
| 828 | return super.some(obj => obj.id === baz) |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | const state = reactive({ |
no outgoing calls
no test coverage detected