Merge pull request #5 from blakejoy/add-configuration
add configuration export
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tmdb-ts",
|
"name": "tmdb-ts",
|
||||||
"version": "0.0.10",
|
"version": "0.1.0",
|
||||||
"description": "TMDB v3 library wrapper",
|
"description": "TMDB v3 library wrapper",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ export interface Poster {
|
|||||||
width: number;
|
width: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Images {
|
export interface CreditImages {
|
||||||
id: number;
|
id: number;
|
||||||
backdrops: Backdrop[];
|
backdrops: Backdrop[];
|
||||||
posters: Poster[];
|
posters: Poster[];
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
export * from './certification';
|
export * from './certification';
|
||||||
export * from './credits';
|
export * from './credits';
|
||||||
|
export * from './configuration';
|
||||||
export * from './changes';
|
export * from './changes';
|
||||||
export * from './movies';
|
export * from './movies';
|
||||||
export * from './search';
|
export * from './search';
|
||||||
|
|||||||
Reference in New Issue
Block a user