UNPKG
@sinch/mcp
Version:
latest (0.0.1-alpha.4)
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
Sinch MCP server
@sinch/mcp
/
dist
/
src
/
tools
/
conversation
/
utils
/
geocoding.d.ts
8 lines
(7 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
interface
GeocodingAddress
{
latitude
:
number
;
longitude
:
number
;
formattedAddress
:
string
; }
export
declare
const
getLatitudeLongitudeFromAddress
:
(
address
:
string
) =>
Promise
<
GeocodingAddress
>;
export
{};