Remove useless imports

This commit is contained in:
Amaury 2021-07-28 14:21:21 +02:00
parent 48b73a89bc
commit b9d99891db

View File

@ -1,10 +1,10 @@
// Api request lib
import fetch, { FetchError, Headers } from "node-fetch";
import fetch, { Headers } from "node-fetch";
import { URL, URLSearchParams } from "url";
namespace PeerTubeRequester {
export type Config = {
domain_name: string | URL;
domainName: string | URL;
username: string;
password: string;
};