run prettier

This commit is contained in:
Blake Joynes
2023-04-20 06:26:53 -04:00
parent 69a883e845
commit 9e54e26e87
3 changed files with 4 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import {Api} from '../api';
import { Api } from '../api';
export class BaseEndpoint {
protected api: Api;

View File

@@ -1,8 +1,6 @@
import {TMDB} from './tmdb';
import { TMDB } from './tmdb';
export * from './types';
export * from './utils';
export {
TMDB
}
export { TMDB };

View File

@@ -1,4 +1,4 @@
export function parseOptions(options?: Record<string, any>): string {
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/no-explicit-any */
return options ? new URLSearchParams(Object.entries(options)).toString() : '';
}