fix
This commit is contained in:
parent
9b97df8649
commit
948f36fe6a
9 changed files with 10 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
import axios from "axios";
|
||||
import { CathError } from "../Error/CathError";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
import { PerkData, ScorestreakData } from "./codmclient.interface";
|
||||
/**
|
||||
* @name APIClient
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import axios from "axios";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
import { CodeData } from "./codeclient.interface";
|
||||
import { CathError } from "../Error/CathError";
|
||||
/**
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import config from "../";
|
||||
import { config } from "../";
|
||||
/**
|
||||
* @name ImageClient
|
||||
* @kind constructor
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import axios from "axios";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
import { URLData } from "./urlclient.interface";
|
||||
import { CathError } from "../Error/CathError";
|
||||
/**
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import axios from "axios";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
/**
|
||||
* Sends a 8ball response
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import axios from "axios";
|
||||
import { CathError } from "../Error/CathError";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
/**
|
||||
* Dobulestruck words
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import axios from "axios";
|
||||
import { CathError } from "../Error/CathError";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
/**
|
||||
* Sends a 8ball response
|
||||
*/
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import axios from "axios";
|
||||
import { CathError } from "../Error/CathError";
|
||||
import config from "../";
|
||||
import { config } from "../";
|
||||
/**
|
||||
* Sends a superscript-ed word
|
||||
*/
|
||||
|
|
|
@ -58,10 +58,11 @@ const config: ConfigURLS = {
|
|||
code: "https://cdn.night0721.me/api/paste",
|
||||
url: "https://cdn.night0721.me/api/url",
|
||||
};
|
||||
export default config;
|
||||
|
||||
interface ConfigURLS {
|
||||
api: string;
|
||||
code: string;
|
||||
url: string;
|
||||
}
|
||||
|
||||
export { config };
|
||||
|
|
Loading…
Reference in a new issue