UNPKG

@stadiamaps/api

Version:
24 lines 1.45 kB
import { GeocodingGeoJSONPropertiesAddendumOsm } from './GeocodingGeoJSONPropertiesAddendumOsm'; /** * Optional additional information from the underlying data source (ex: OSM). This includes select fields. The most useful fields are mapped in the definition here, but others may be available. * @export * @interface GeocodingGeoJSONPropertiesAddendum */ export interface GeocodingGeoJSONPropertiesAddendum { [key: string]: any | any; /** * * @type {GeocodingGeoJSONPropertiesAddendumOsm} * @memberof GeocodingGeoJSONPropertiesAddendum */ osm?: GeocodingGeoJSONPropertiesAddendumOsm; } /** * Check if a given object implements the GeocodingGeoJSONPropertiesAddendum interface. */ export declare function instanceOfGeocodingGeoJSONPropertiesAddendum(value: object): value is GeocodingGeoJSONPropertiesAddendum; export declare function GeocodingGeoJSONPropertiesAddendumFromJSON(json: any): GeocodingGeoJSONPropertiesAddendum; export declare function GeocodingGeoJSONPropertiesAddendumFromJSONTyped(json: any, ignoreDiscriminator: boolean): GeocodingGeoJSONPropertiesAddendum; export declare function GeocodingGeoJSONPropertiesAddendumToJSON(json: any): GeocodingGeoJSONPropertiesAddendum; export declare function GeocodingGeoJSONPropertiesAddendumToJSONTyped(value?: GeocodingGeoJSONPropertiesAddendum | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GeocodingGeoJSONPropertiesAddendum.d.ts.map