import type { BinaryFeatureCollection } from '@loaders.gl/schema'; /** * Return the index of feature (numericProps or featureIds) for given feature id * Example: findIndexBinary(data, 'id', 33) will return the index in the array of numericProps * of the feature 33. */ export default function findIndexBinary(data: BinaryFeatureCollection, // The data in binary format uniqueIdProperty: string, // Name of the unique id property featureId: string | number, // feature id to find layerName: string | null): number; //# sourceMappingURL=find-index-binary.d.ts.map