arifa-client 1.0.11 → 1.0.12
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
|
@@ -20,7 +20,7 @@ yarn add arifa-client
|
|
|
20
20
|
#### Import and Initialize
|
|
21
21
|
|
|
22
22
|
```js
|
|
23
|
-
import
|
|
23
|
+
import ArifaClient from "arifa-client";
|
|
24
24
|
|
|
25
25
|
const client = new ArifaClient({
|
|
26
26
|
apiKey: "YOUR_API_KEY",
|
|
@@ -104,7 +104,7 @@ if (client.connected()) {
|
|
|
104
104
|
## ## ArifaClient Usage Example
|
|
105
105
|
|
|
106
106
|
```jsx
|
|
107
|
-
import
|
|
107
|
+
import ArifaClient from "arifa-client";
|
|
108
108
|
|
|
109
109
|
// Initialize client
|
|
110
110
|
const client = new ArifaClient({
|
package/package.json
CHANGED