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
src/database.ts:2491:12 - error TS2352: Conversion of type 'Transform' to type 'PartialResultStream' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
2491 return proxyStream as PartialResultStream;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/partial-result-stream.ts:160:3 - error TS2416: Property 'destroy' in type 'PartialResultStream' is not assignable to the same property in base type 'Transform'.
Type '(err?: Error | undefined) => void' is not assignable to type '(error?: Error | undefined) => this'.
Type 'void' is not assignable to type 'this'.
'this' could be instantiated with an arbitrary type which could be unrelated to 'void'.
160 destroy(err?: Error): void {
~~~~~~~
src/table.ts:270:12 - error TS2352: Conversion of type 'Transform' to type 'PartialResultStream' may be a mistake because neither type sufficiently overlaps with the other. If this was intentional, convert the expression to 'unknown' first.
Type 'Transform' is missing the following properties from type 'PartialResultStream': _destroyed, _fields, _options, _values, and 6 more.
270 return proxyStream as PartialResultStream;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Found 3 errors.
Environment details
Steps to reproduce
Issues
Thanks!