UNPKG

soda-angular

Version:
11 lines (10 loc) 433 B
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; }