You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: src/database/StorageFileRepository.ts(19,3): error TS2322: Type 'LeanDocument<IDBStorageFile & { _id: any; }>[]' is not assignable to type 'IStorageFile[]'.
Type 'LeanDocument<IDBStorageFile & { _id: any; }>' is not assignable to type 'IStorageFile'.
Types of property 'usedBy' are incompatible.
Type 'LeanDocument<IFileUsedBy>[]' is not assignable to type 'IFileUsedBy[]'.
Property 'model' is missing in type 'LeanDocument<IFileUsedBy>' but required in type 'IFileUsedBy'.
The text was updated successfully, but these errors were encountered:
This commit causes some troubles on my side: 90e696c
I have a model like this:


The problem here is that I have a prop called "model" in IFileUsedBy, but this is now excluded.
The text was updated successfully, but these errors were encountered: