ng-qubee 2.0.2 → 2.0.3
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# Your next Angular Query Builder 🐝
|
|
6
|
-
NgQubee is
|
|
6
|
+
NgQubee is a Query Builder for Angular. Easily compose your API requests without the hassle of writing the wheel again :)
|
|
7
7
|
|
|
8
8
|
- Easily retrieve URIs with a Service
|
|
9
9
|
- Pagination ready
|
|
@@ -33,7 +33,7 @@ Import the module in your Angular app:
|
|
|
33
33
|
NgQubeeModule.forRoot({}) // You can omit the empty object as it is an optional argument
|
|
34
34
|
]
|
|
35
35
|
})
|
|
36
|
-
export
|
|
36
|
+
export class AppModule {}
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
Or if you are working with Angular 15 or greater, use the provide function:
|