vikashsingh009 opened a new issue #8812:
URL: https://github.com/apache/arrow/issues/8812
I have imported arrowjs in typescript like
import { Table } from 'apache-arrow';
const arrow = readFileSync('simple.arrow');
const table = Table.from([arrow]);
but when i am building the project getting exception like
ERROR in node_modules/apache-arrow/ipc/reader.d.ts:236:5 - error TS2717:
Subsequent property declarations must have the same type. Property 'schema'
must be of type 'Schema<T>', but here has type 'Schema<any>'.
236 schema: Schema;
~~~~~~
node_modules/apache-arrow/ipc/reader.d.ts:189:5
189 schema: Schema<T>;
~~~~~~
'schema' was also declared here.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]