UNPKG
n7-google-places-autocomplete
Version:
latest (1.0.11)
1.0.11
1.0.10
1.0.9
1.0.4
1.0.1
A NativeScript plugin that works.
github.com/labidiaymen/nativescript-google-places-autocomplete
n7-google-places-autocomplete
/
google-places-autocomplete.common.d.ts
9 lines
(8 loc)
•
302 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Observable
}
from
"@nativescript/core"
;
export
declare
class
Common
extends
Observable
{
private
apikey;
constructor
(
key
:
string
);
search
(
terms
:
string
,
countryISO
?:
string
,
types
?:
string
):
Promise
<
any
[]>;
getPlaceById
(
placeId
:
any
):
Promise
<
any
>;
private
handleErrors; }