Extent.d.ts 234 Bytes
Newer Older
Hanadi's avatar
Hanadi committed
1
2
3
4
5
6
7
import { SpatialExtent } from "./SpatialExtent";
import { TemporalExtent } from "./TemporalExtent";
export declare class Extent {
    spatial: SpatialExtent;
    temporal?: TemporalExtent;
    static fromJson(jsonObj: any): Extent;
}