docs(): update interface names

This commit is contained in:
Ibby Hadeed 2017-05-17 10:36:05 -04:00
parent d6ed87d7cc
commit 1ec4bdef8f

View File

@ -853,14 +853,14 @@ export class Marker {
/** /**
* Set the marker position. * Set the marker position.
* @param latLng {GoogleMapLatLng} * @param latLng {LatLng}
*/ */
@CordovaInstance({ sync: true }) @CordovaInstance({ sync: true })
setPosition(latLng: LatLng): void { return; } setPosition(latLng: LatLng): void { return; }
/** /**
* Return the marker position. * Return the marker position.
* @return {Promise<GoogleMapLatLng>} * @return {Promise<LatLng>}
*/ */
@CordovaInstance() @CordovaInstance()
getPosition(): Promise<LatLng> { return; } getPosition(): Promise<LatLng> { return; }