refactor(google-maps): accept string or number

This commit is contained in:
Ibby Hadeed 2017-05-09 17:56:03 -04:00
parent 88f393288d
commit e84359b2b1

View File

@ -363,7 +363,7 @@ export class GoogleMap {
remove(): void { }
@CordovaInstance({ sync: true })
panBy(x: string, y: string): void { }
panBy(x: string | number, y: string | number): void { }
}
/**