sid-address-verification-react-native
Version:
A sourceID react native package for address verification
9 lines • 437 B
TypeScript
import type { AddressResult, GooglePlacesPrediction } from "../types";
declare class GooglePlacesService {
private apiKey;
constructor(apiKey: string);
getAutocompletePredictions(input: string, sessionToken?: string): Promise<GooglePlacesPrediction[]>;
getPlaceDetails(placeId: string, sessionToken?: string): Promise<AddressResult>;
}
export default GooglePlacesService;
//# sourceMappingURL=GooglePlacesService.d.ts.map