mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
155 B
TypeScript
12 lines
155 B
TypeScript
import { Point } from "arcgis-rest-api";
|
|
|
|
let point: Point;
|
|
|
|
point = {
|
|
x: -122.6764,
|
|
y: 45.5165,
|
|
spatialReference: {
|
|
wkid: 4326
|
|
}
|
|
};
|