diff --git a/src/tmdb.ts b/src/tmdb.ts index 5776d8a..73af31a 100644 --- a/src/tmdb.ts +++ b/src/tmdb.ts @@ -14,6 +14,7 @@ import { TrendingEndpoint, FindEndpoint, KeywordsEndpoint, + CollectionsEndpoint, } from './endpoints'; export default class TMDB { @@ -82,4 +83,8 @@ export default class TMDB { get keywords() : KeywordsEndpoint{ return new KeywordsEndpoint(this.accessToken); } + + get collections() : CollectionsEndpoint{ + return new CollectionsEndpoint(this.accessToken); + } }