UNPKG

@esri/arcgis-rest-feature-service

Version:

Feature layer query and edit helpers for @esri/arcgis-rest-js

10 lines (9 loc) 377 B
export interface EsriGeoJSONFeatureCollection { type: "FeatureCollection"; features: any[]; properties?: { exceededTransferLimit?: boolean; }; } export default function pbfToGeoJSON(arrayBuffer: ArrayBuffer | Uint8Array | Buffer): EsriGeoJSONFeatureCollection; export declare function decode(featureCollectionBuffer: any): EsriGeoJSONFeatureCollection;