I am dealing with numerous models that include additional meta data, which led me to create a generic type for appending them to the models when necessary:
type WithMeta<T> = T extends Meta;
However, I encountered an error stating: Parsing error: '?' expected.
Unfortunately, ESLint did not specify which rule triggered this error. Any insights from anyone here would be greatly appreciated. Thank you!