@open-tender/utils
Version:
A library of utils for use with Open Tender applications that utilize our cloud-based Order API.
15 lines (14 loc) • 366 B
TypeScript
/// <reference types="google.maps" />
export interface AddressName {
long_name: string;
short_name: string;
}
export declare const makeAddress: (place: google.maps.places.PlaceResult) => {
street: string;
city: string;
state: string;
postal_code: string;
lat: number;
lng: number;
formatted_address: string | undefined;
} | null;