apple-maps-server-sdk 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/index.ts +11 -0
package/lib/index.d.ts
CHANGED
|
@@ -30,4 +30,5 @@ declare class AppleMaps {
|
|
|
30
30
|
*/
|
|
31
31
|
search(input: SearchInput): Promise<SearchResponse>;
|
|
32
32
|
}
|
|
33
|
+
export type { GeocodeInput, GeocodeResponse, ReverseGeocodeInput, ReverseGeocodeResponse, ETAInput, ETAResponse, SearchInput, SearchResponse, };
|
|
33
34
|
export default AppleMaps;
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -144,4 +144,15 @@ class AppleMaps {
|
|
|
144
144
|
}
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
export type {
|
|
148
|
+
GeocodeInput,
|
|
149
|
+
GeocodeResponse,
|
|
150
|
+
ReverseGeocodeInput,
|
|
151
|
+
ReverseGeocodeResponse,
|
|
152
|
+
ETAInput,
|
|
153
|
+
ETAResponse,
|
|
154
|
+
SearchInput,
|
|
155
|
+
SearchResponse,
|
|
156
|
+
};
|
|
157
|
+
|
|
147
158
|
export default AppleMaps;
|