diff --git a/classes/Client.html b/classes/Client.html index abdf8cb709..39f2228376 100644 --- a/classes/Client.html +++ b/classes/Client.html @@ -6,7 +6,7 @@
const axiosInstance = axios.create(config)
const client = Client({axiosInstance})
-Private
Readonly
axiosPrivate
experiencePrivate
Readonly
axiosPrivate
experienceAn example use of this function.
import { Client } from '@googlemaps/google-maps-services-js';
const args = {
params: {
key: '<your-api-key>',
address: 'Perth 4WD & Commercial Centre',
}
};
const client = new Client();
client.geocode(args).then(gcResponse => {
const str = JSON.stringify(gcResponse.data.results[0]);
console.log(`First result is: ${str}`);
});
-
An example use of this function.
+