run npm format
This commit is contained in:
@@ -12,7 +12,13 @@ export class KeywordsEndpoint extends BaseEndpoint {
|
||||
return await this.api.get<Keyword>(`${BASE_Keyword}/${keywordId}`);
|
||||
}
|
||||
|
||||
async belongingMovies(keywordId : number, options?: KeywordsOptions): Promise<BelongingMovies> {
|
||||
return await this.api.get<BelongingMovies>(`${BASE_Keyword}/${keywordId}/movies`, options);
|
||||
async belongingMovies(
|
||||
keywordId: number,
|
||||
options?: KeywordsOptions
|
||||
): Promise<BelongingMovies> {
|
||||
return await this.api.get<BelongingMovies>(
|
||||
`${BASE_Keyword}/${keywordId}/movies`,
|
||||
options
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user