(val: unknown)
| 350 | myProp: { |
| 351 | type: Number, |
| 352 | validator(val: unknown): boolean { |
| 353 | // @ts-expect-error |
| 354 | return val !== this.otherProp |
| 355 | }, |
| 356 | default(): number { |
| 357 | // @ts-expect-error |
| 358 | return this.otherProp + 1 |
no outgoing calls
no test coverage detected