soda-angular
Version:
Socrata SODA client for Angular
13 lines (12 loc) • 578 B
TypeScript
import { Point } from 'geojson';
import { Location } from '../../../../datatypes/location';
import { Column } from '../../column';
import { IWhereComponent } from '../where-component';
import { WhereValue } from '../where-value';
export declare class WithinBox<TCoordinate extends Location | Point> implements IWhereComponent {
readonly Column: Column;
readonly Start: WhereValue<TCoordinate>;
readonly End: WhereValue<TCoordinate>;
constructor(column: Column, start: WhereValue<TCoordinate>, end: WhereValue<TCoordinate>);
toString(): string;
}