fixed styling and import

This commit is contained in:
DerPenz
2023-03-10 14:30:48 +01:00
parent 3ac257491d
commit 82f84f4b68
2 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import { DetailedCollection, ImageCollection, LanguageOption, PageOption, Translations } from '../types';
import { DetailedCollection, ImageCollection, LanguageOption, Translations } from '../types';
import { BaseEndpoint } from './base';
import querystring from 'querystring';

View File

@@ -2,15 +2,15 @@ import { ParsedUrlQueryInput } from 'querystring';
import { Movie } from '.';
export interface KeywordsOptions extends ParsedUrlQueryInput {
include_adult?: boolean;
language?: string;
include_adult?: boolean;
language?: string;
}
export interface BelongingMovies{
page: number;
results: Movie[];
total_results: number;
total_pages: number;
results: Movie[];
total_results: number;
total_pages: number;
}
export interface Keyword{