cath/src/index.ts

61 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-01-26 22:46:04 +01:00
export {
CODMClient,
CODMClientOptions,
PerkData,
ScorestreakData,
} from "./CODMClient";
2021-09-19 15:31:16 +02:00
export {
StarboardClient,
StarboardClientOptions,
StarboardGuild,
StarboardGuildOptions,
starMessageData,
2021-10-09 02:50:42 +02:00
} from "./StarboardClient";
export { CodeClient, CodeData } from "./CodeClient";
export { URLClient, URLData } from "./URLClient";
export {
GiveawaysClient,
GiveawaySchema,
GiveawaysClientOptions,
DefaultGiveawayMessages,
} from "./GiveawaysClient";
2021-10-10 02:54:02 +02:00
export { ImageClient } from "./ImageClient/index";
2021-09-19 15:31:16 +02:00
export { random8ball } from "./functions/8ball";
2021-09-30 00:44:48 +02:00
export { getreddit, RedditObject } from "./functions/reddit";
2021-09-30 20:11:56 +02:00
export { Pagination } from "./functions/pagination";
2021-10-09 02:50:42 +02:00
export { bool } from "./functions/bool";
export { randint } from "./functions/randint";
export { timer } from "./functions/timer";
export { selectRandom } from "./functions/selectRandom";
export { parseMS, parseString } from "./functions/ms";
export { confirmation } from "./functions/confirmation";
export { HHMMSS } from "./functions/HHMMSS";
export { formatUpper } from "./functions/formatUpper";
2021-10-27 02:25:48 +02:00
export {
DiscordActivity,
DiscordActivityOptions,
Applications,
} from "./functions/discord-activity";
2021-10-09 02:50:42 +02:00
export { cleanText } from "./functions/cleanText";
export { daysAgo } from "./functions/daysAgo";
export { sleep } from "./functions/sleep";
export { trimArray } from "./functions/trimArray";
2021-10-27 02:50:04 +02:00
export { superscript } from "./functions/superscript";
export { doublestruck } from "./functions/doublestruck";
export { fractur } from "./functions/fractur";
2023-04-16 16:21:01 +02:00
export { randomID } from "./functions/randomID";
2023-04-19 01:39:55 +02:00
export { round } from "./functions/round";
2023-04-16 16:21:01 +02:00
const config: ConfigURLS = {
api: "https://api.night0721.me",
2023-04-06 13:35:46 +02:00
code: "https://code.night0721.me",
url: "https://url.night0721.me",
};
export default config;
2023-04-16 16:21:01 +02:00
interface ConfigURLS {
api: string;
code: string;
url: string;
}