fix build

This commit is contained in:
Ibby
2017-02-16 20:38:13 -05:00
parent 964cc91548
commit d3c87fd95a
4 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -109,6 +109,7 @@ export interface CameraPopoverOptions {
* CameraOptions
* CameraPopoverOptions
*/
@Injectable()
@Plugin({
pluginName: 'Camera',
plugin: 'cordova-plugin-camera',
@@ -116,7 +117,6 @@ export interface CameraPopoverOptions {
repo: 'https://github.com/apache/cordova-plugin-camera',
platforms: ['Android', 'BlackBerry', 'Browser', 'Firefox', 'FireOS', 'iOS', 'Windows', 'Windows Phone 8', 'Ubuntu']
})
@Injectable()
export class Camera {
/**
@@ -886,7 +886,7 @@ export class GoogleMapsMarker {
* @return {GoogleMap}
*/
@CordovaInstance({ sync: true })
getMap(): GoogleMap { return; }
getMap(): GoogleMapsObject { return; }
/**
* Specify the animation either `DROP` or `BOUNCE`
@@ -1036,7 +1036,7 @@ export class GoogleMapsCircle {
setRadius(radius: number): void { }
@CordovaInstance({ sync: true })
getMap(): GoogleMap { return; }
getMap(): GoogleMapsObject { return; }
}
/**
@@ -1173,7 +1173,7 @@ export class GoogleMapsPolyline {
setGeoDesic(geoDesic: boolean): void { }
@CordovaInstance({ sync: true })
getMap(): GoogleMap { return; }
getMap(): GoogleMapsObject { return; }
}