skapi-js 0.1.71 → 0.1.72
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 +1 -2
- package/dist/skapi.js +1 -1
- package/dist/skapi.js.map +1 -1
- package/dist/skapi.module.js +1 -1
- package/dist/skapi.module.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,8 +31,7 @@ Then, import the library into your main JavaScript file:
|
|
|
31
31
|
import { Skapi } from 'skapi-js';
|
|
32
32
|
const skapi = new Skapi('your_service_id', 'your_user_id');
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
export { skapi };
|
|
34
|
+
export { skapi }; // Import skapi from your project files
|
|
36
35
|
```
|
|
37
36
|
|
|
38
37
|
For more info, visit our [documentation page](https://docs.skapi.com)
|