formatting

This commit is contained in:
Ibrahim Hadeed 2016-05-25 03:32:05 -04:00
parent 5517e510dc
commit c531114f46

View File

@ -210,103 +210,103 @@ export class GoogleMaps {
}) })
setIndoorEnabled (enabled: boolean): void { } setIndoorEnabled (enabled: boolean): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setTrafficEnabled (enabled: boolean): void { } setTrafficEnabled (enabled: boolean): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setCompassEnabled (enabled: boolean): void { } setCompassEnabled (enabled: boolean): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setAllGesturesEnabled (enabled: boolean): void { } setAllGesturesEnabled (enabled: boolean): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addMarker (options: any): void { } addMarker (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addCircle (options: any): void { } addCircle (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addPolygon (options: any): void { } addPolygon (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addPolyline (options: any): void { } addPolyline (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addTileOverlay (options: any): void { } addTileOverlay (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
addGroundOverlay (options: any): void { } addGroundOverlay (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setDiv (domNode: HTMLElement): void { } setDiv (domNode: HTMLElement): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setVisible (visible: boolean): void { } setVisible (visible: boolean): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setOptions (options: any): void { } setOptions (options: any): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setBackgroundColor (backgroundColor: string): void { } setBackgroundColor (backgroundColor: string): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
setPadding (top?: number, right?: number, bottom?: number, left?: number): void { } setPadding (top?: number, right?: number, bottom?: number, left?: number): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
clear (): void { } clear (): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
refreshLayout (): void { } refreshLayout (): void { }
@CordovaInstance() @CordovaInstance()
fromLatLngToPoint (latLng: GoogleMapsLatLng, point: any): Promise<any> {return; } fromLatLngToPoint (latLng: GoogleMapsLatLng, point: any): Promise<any> {return; }
@CordovaInstance() @CordovaInstance()
fromPointToLatLng (point: any, latLng: GoogleMapsLatLng): Promise<GoogleMapsLatLng> {return; } fromPointToLatLng (point: any, latLng: GoogleMapsLatLng): Promise<GoogleMapsLatLng> {return; }
@CordovaInstance() @CordovaInstance()
toDataURL (): Promise<any> {return; } toDataURL (): Promise<any> {return; }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
remove (): void { } remove (): void { }
@CordovaInstance({ @CordovaInstance({
sync: true sync: true
}) })
panBy (): void { } panBy (): void { }
} }