@justwicked/tmdb-client 1.0.1 → 1.0.2
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 +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
# TMDB Client Module
|
|
2
2
|
|
|
3
|
-
A simple
|
|
3
|
+
A simple TypeScript client for [The Movie Database API](https://developer.themoviedb.org/reference/getting-started)
|
|
4
|
+
|
|
4
5
|
---
|
|
5
6
|
|
|
6
7
|
### Basic Usage
|
|
7
8
|
|
|
8
9
|
```ts
|
|
9
10
|
import 'server-only';
|
|
10
|
-
import { TmdbClient } from '@justwicked/tmdb-
|
|
11
|
+
import { TmdbClient } from '@justwicked/tmdb-client';
|
|
11
12
|
|
|
12
13
|
const tmdbApi = new TmdbClient({
|
|
13
14
|
next: {
|