diff --git a/src/endpoints/base.ts b/src/endpoints/base.ts index bdad899..219626a 100644 --- a/src/endpoints/base.ts +++ b/src/endpoints/base.ts @@ -1,4 +1,4 @@ -import {Api} from '../api'; +import { Api } from '../api'; export class BaseEndpoint { protected api: Api; diff --git a/src/index.ts b/src/index.ts index e1f11c6..730111c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,6 @@ -import {TMDB} from './tmdb'; +import { TMDB } from './tmdb'; export * from './types'; export * from './utils'; -export { - TMDB -} +export { TMDB }; diff --git a/src/utils/parseOptions.ts b/src/utils/parseOptions.ts index 9ef0d54..cdf57d2 100644 --- a/src/utils/parseOptions.ts +++ b/src/utils/parseOptions.ts @@ -1,4 +1,4 @@ export function parseOptions(options?: Record): string { -/* eslint-disable @typescript-eslint/no-explicit-any */ + /* eslint-disable @typescript-eslint/no-explicit-any */ return options ? new URLSearchParams(Object.entries(options)).toString() : ''; }