Skip to content

Commit

Permalink
fix(query features): add count and extent to IQueryFeaturesResponse
Browse files Browse the repository at this point in the history
AFFECTS PACKAGES:
@esri/arcgis-rest-feature-service
  • Loading branch information
Noah Mulfinger committed Jul 25, 2018
1 parent 834ad79 commit 2ab9f33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/arcgis-rest-feature-service/src/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import {
ISpatialReference,
IFeatureSet,
IFeature,
esriUnits
esriUnits,
IExtent
} from "@esri/arcgis-rest-common-types";
import { request, IRequestOptions } from "@esri/arcgis-rest-request";

Expand Down Expand Up @@ -87,6 +88,8 @@ export interface IQueryFeaturesRequestOptions

export interface IQueryFeaturesResponse extends IFeatureSet {
exceededTransferLimit?: boolean;
count?: number;
extent?: IExtent;
}

/**
Expand Down

0 comments on commit 2ab9f33

Please sign in to comment.