soda-angular
Version:
Socrata SODA client for Angular
11 lines (10 loc) • 410 B
TypeScript
import { Geometry } from 'geojson';
import { Column } from '../../column';
import { IWhereComponent } from '../where-component';
import { WhereValue } from '../where-value';
export declare class Intersects implements IWhereComponent {
readonly Column: Column;
readonly Geometry: WhereValue<Geometry>;
constructor(column: Column, geometry: WhereValue<Geometry>);
toString(): string;
}