Error Suppression
Source: https://bobbyhadz.com/blog/typescript-ignore-error
Use // @ts-expect-error
on the previous line to suppress errors. This is to be preferred over // @ts-nocheck
(which is for a whole file) and // @ts-ignore
which gives no warning if the error is no longer present.