Open LCHarold opened 6 years ago
Related error: https://github.com/jaystack/odata-v4-server-pgsql-example/issues/5
node_modules/odata-v4-server/build/lib/processor.d.ts:20:22 - error TS2415: Class 'ODataProcessor' incorrectly extends base class 'Transform'.
Property '_flush' is protected in type 'ODataProcessor' but public in type 'Transform'.
20 export declare class ODataProcessor extends Transform {
~~~~~~~~~~~~~~
I am experiencing this issue as well. Are there plans to merge the existing PR to resolve this bug?
TypeScript can build project if pass option tsc --skipLibCheck
A project using odata-v4-server npm package and with @types/node version 10.9.4 will throw an error when compiling TypeScript:
The fix is to change both _flush methods in processor.ts to public instead of protected.