UNPKG

@stadiamaps/api

Version:
39 lines 1.15 kB
/** * Stadia Maps Geospatial APIs * The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications. * * The version of the OpenAPI document: 10.1.2 * Contact: support@stadiamaps.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * A point geometry. * @export * @interface Point */ export interface Point { /** * * @type {Array<number>} * @memberof Point */ coordinates: Array<number>; /** * * @type {string} * @memberof Point */ type: string; } /** * Check if a given object implements the Point interface. */ export declare function instanceOfPoint(value: object): value is Point; export declare function PointFromJSON(json: any): Point; export declare function PointFromJSONTyped(json: any, ignoreDiscriminator: boolean): Point; export declare function PointToJSON(json: any): Point; export declare function PointToJSONTyped(value?: Point | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Point.d.ts.map