fix(google-maps): fix fromPointToLatLng params (#1514)

This commit is contained in:
Chris Topaloudis 2017-05-10 00:27:05 +02:00 committed by Ibby Hadeed
parent 4e9b2d917b
commit 958380275c

View File

@ -351,7 +351,7 @@ export class GoogleMap {
* @returns {Promise<LatLng>} * @returns {Promise<LatLng>}
*/ */
@CordovaInstance() @CordovaInstance()
fromPointToLatLng(point: any, latLng: LatLng): Promise<LatLng> { return; } fromPointToLatLng(point: any): Promise<LatLng> { return; }
/** /**
* @returns {Promise<any>} * @returns {Promise<any>}