// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import type {Format} from '@loaders.gl/loader-utils'; /** ArrowJS table loader */ export const ArrowFormat = { name: 'Apache Arrow', id: 'arrow', module: 'arrow', category: 'table', extensions: ['arrow', 'feather'], mimeTypes: [ 'application/vnd.apache.arrow.file', 'application/vnd.apache.arrow.stream', 'application/octet-stream' ], binary: true, tests: ['ARROW'] } as const satisfies Format;