We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I rewrite official example in https://stackblitz.com/edit/typescript-hfut4q.
The text was updated successfully, but these errors were encountered:
I known...
Because of version of Dexie.js.
dexie-relationships 's type only support Dexie.js 2.x now.
dexie-relationships
For support Dexie.js 3.x, I wrote this type file:
declare module 'dexie' { export interface Table<T = any, TKey = IndexableType> { with: (spec: Object) => Promise<Array<T>>; } export interface Collection<T = any, TKey = IndexableType> { with: (spec: Object) => Promise<Array<T>>; } }
it's ok.
Sorry, something went wrong.
No branches or pull requests
I rewrite official example in https://stackblitz.com/edit/typescript-hfut4q.
The text was updated successfully, but these errors were encountered: