From 1ec4bdef8f27ad3c0356b0acd371e3f5efbde3ed Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Wed, 17 May 2017 10:36:05 -0400 Subject: [PATCH] docs(): update interface names --- src/@ionic-native/plugins/google-maps/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/google-maps/index.ts b/src/@ionic-native/plugins/google-maps/index.ts index 9d386529..68a4933d 100644 --- a/src/@ionic-native/plugins/google-maps/index.ts +++ b/src/@ionic-native/plugins/google-maps/index.ts @@ -853,14 +853,14 @@ export class Marker { /** * Set the marker position. - * @param latLng {GoogleMapLatLng} + * @param latLng {LatLng} */ @CordovaInstance({ sync: true }) setPosition(latLng: LatLng): void { return; } /** * Return the marker position. - * @return {Promise} + * @return {Promise} */ @CordovaInstance() getPosition(): Promise { return; }