mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08: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
|
|
}
|
|
};
|