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
{{ message }}
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
There is a small issue with the exported types. Doing a import { ERROR } from 'feathers-objection' throws a typescript error because the index.d.ts file doesn't include it. The symbol is still imported and everything works fine with a // @ts-ignore directive.
Edit:
I think we just need to change the declare const objection bit to something more like
declare const objection: {
<T>(config?: Partial<ObjectionServiceOptions>): Service<T>
ERROR: Symbol
}