free-use-bible-api 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,13 +27,13 @@ yarn add free-use-bible-api
|
|
|
27
27
|
Create a client and point it at the production API:
|
|
28
28
|
|
|
29
29
|
```ts
|
|
30
|
-
import { Configuration,
|
|
30
|
+
import { Configuration, FreeUseBibleApi } from 'free-use-bible-api';
|
|
31
31
|
|
|
32
32
|
const config = new Configuration({
|
|
33
33
|
basePath: 'https://bible.helloao.org',
|
|
34
34
|
});
|
|
35
35
|
|
|
36
|
-
const api = new
|
|
36
|
+
const api = new FreeUseBibleApi(config);
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
## Translation Usage Guide
|