run prettier
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
import {Api} from '../api';
|
import { Api } from '../api';
|
||||||
|
|
||||||
export class BaseEndpoint {
|
export class BaseEndpoint {
|
||||||
protected api: Api;
|
protected api: Api;
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
import {TMDB} from './tmdb';
|
import { TMDB } from './tmdb';
|
||||||
|
|
||||||
export * from './types';
|
export * from './types';
|
||||||
export * from './utils';
|
export * from './utils';
|
||||||
|
|
||||||
export {
|
export { TMDB };
|
||||||
TMDB
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
export function parseOptions(options?: Record<string, any>): string {
|
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() : '';
|
return options ? new URLSearchParams(Object.entries(options)).toString() : '';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user