From 9e54e26e87cee75f69047dafb72af386fd90689a Mon Sep 17 00:00:00 2001 From: Blake Joynes Date: Thu, 20 Apr 2023 06:26:53 -0400 Subject: [PATCH] run prettier --- src/endpoints/base.ts | 2 +- src/index.ts | 6 ++---- src/utils/parseOptions.ts | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) 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() : ''; }