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