dos to unix
This commit is contained in:
parent
b3cf434218
commit
781774bacf
3 changed files with 116 additions and 116 deletions
|
@ -1,12 +1,12 @@
|
||||||
const config: ConfigURLS = {
|
const config: ConfigURLS = {
|
||||||
api: "https://api.night0721.me",
|
api: "https://api.night0721.me",
|
||||||
code: "https://cdn.night0721.me/api/paste",
|
code: "https://cdn.night0721.me/api/paste",
|
||||||
url: "https://cdn.night0721.me/api/url",
|
url: "https://cdn.night0721.me/api/url",
|
||||||
};
|
};
|
||||||
|
|
||||||
interface ConfigURLS {
|
interface ConfigURLS {
|
||||||
api: string;
|
api: string;
|
||||||
code: string;
|
code: string;
|
||||||
url: string;
|
url: string;
|
||||||
}
|
}
|
||||||
export { config, ConfigURLS };
|
export { config, ConfigURLS };
|
||||||
|
|
98
src/index.d.ts
vendored
98
src/index.d.ts
vendored
|
@ -1,49 +1,49 @@
|
||||||
export { CODMClient, CODMClientOptions, PerkData } from "./CODMClient";
|
export { CODMClient, CODMClientOptions, PerkData } from "./CODMClient";
|
||||||
export {
|
export {
|
||||||
StarboardClient,
|
StarboardClient,
|
||||||
StarboardClientOptions,
|
StarboardClientOptions,
|
||||||
StarboardGuild,
|
StarboardGuild,
|
||||||
StarboardGuildOptions,
|
StarboardGuildOptions,
|
||||||
starMessageData,
|
starMessageData,
|
||||||
} from "./StarboardClient";
|
} from "./StarboardClient";
|
||||||
export { CodeClient, CodeData } from "./CodeClient";
|
export { CodeClient, CodeData } from "./CodeClient";
|
||||||
export { URLClient, URLData } from "./URLClient";
|
export { URLClient, URLData } from "./URLClient";
|
||||||
export {
|
export {
|
||||||
GiveawaysClient,
|
GiveawaysClient,
|
||||||
GiveawaySchema,
|
GiveawaySchema,
|
||||||
GiveawaysClientOptions,
|
GiveawaysClientOptions,
|
||||||
DefaultGiveawayMessages,
|
DefaultGiveawayMessages,
|
||||||
} from "./GiveawaysClient";
|
} from "./GiveawaysClient";
|
||||||
export { ImageClient } from "./ImageClient/index";
|
export { ImageClient } from "./ImageClient/index";
|
||||||
export { random8ball } from "./functions/8ball";
|
export { random8ball } from "./functions/8ball";
|
||||||
export { getreddit, RedditObject } from "./functions/reddit";
|
export { getreddit, RedditObject } from "./functions/reddit";
|
||||||
export { Pagination } from "./functions/pagination";
|
export { Pagination } from "./functions/pagination";
|
||||||
export { bool } from "./functions/bool";
|
export { bool } from "./functions/bool";
|
||||||
export { randint } from "./functions/randint";
|
export { randint } from "./functions/randint";
|
||||||
export { timer } from "./functions/timer";
|
export { timer } from "./functions/timer";
|
||||||
export { selectRandom } from "./functions/selectRandom";
|
export { selectRandom } from "./functions/selectRandom";
|
||||||
export { parseMS, parseString } from "./functions/ms";
|
export { parseMS, parseString } from "./functions/ms";
|
||||||
export { confirmation } from "./functions/confirmation";
|
export { confirmation } from "./functions/confirmation";
|
||||||
export { HHMMSS } from "./functions/HHMMSS";
|
export { HHMMSS } from "./functions/HHMMSS";
|
||||||
export { formatUpper } from "./functions/formatUpper";
|
export { formatUpper } from "./functions/formatUpper";
|
||||||
export { cleanText } from "./functions/cleanText";
|
export { cleanText } from "./functions/cleanText";
|
||||||
export { daysAgo } from "./functions/daysAgo";
|
export { daysAgo } from "./functions/daysAgo";
|
||||||
export { sleep } from "./functions/sleep";
|
export { sleep } from "./functions/sleep";
|
||||||
export { trimArray } from "./functions/trimArray";
|
export { trimArray } from "./functions/trimArray";
|
||||||
export { randomID } from "./functions/randomID";
|
export { randomID } from "./functions/randomID";
|
||||||
export {
|
export {
|
||||||
DiscordActivity,
|
DiscordActivity,
|
||||||
DiscordActivityOptions,
|
DiscordActivityOptions,
|
||||||
Applications,
|
Applications,
|
||||||
} from "./functions/discord-activity";
|
} from "./functions/discord-activity";
|
||||||
export { superscript } from "./functions/superscript";
|
export { superscript } from "./functions/superscript";
|
||||||
export { doublestruck } from "./functions/doublestruck";
|
export { doublestruck } from "./functions/doublestruck";
|
||||||
export { fractur } from "./functions/fractur";
|
export { fractur } from "./functions/fractur";
|
||||||
export { round } from "./functions/round";
|
export { round } from "./functions/round";
|
||||||
export {
|
export {
|
||||||
generatePassword,
|
generatePassword,
|
||||||
GeneratePasswordOptions,
|
GeneratePasswordOptions,
|
||||||
} from "./functions/generatePassword";
|
} from "./functions/generatePassword";
|
||||||
export { getLilaseDownloads } from "./functions/getLilaseDownloads";
|
export { getLilaseDownloads } from "./functions/getLilaseDownloads";
|
||||||
export { emojify } from "./functions/emojify";
|
export { emojify } from "./functions/emojify";
|
||||||
export { obama } from "./functions/obama";
|
export { obama } from "./functions/obama";
|
||||||
|
|
110
src/index.ts
110
src/index.ts
|
@ -1,55 +1,55 @@
|
||||||
export {
|
export {
|
||||||
CODMClient,
|
CODMClient,
|
||||||
CODMClientOptions,
|
CODMClientOptions,
|
||||||
PerkData,
|
PerkData,
|
||||||
ScorestreakData,
|
ScorestreakData,
|
||||||
} from "./CODMClient";
|
} from "./CODMClient";
|
||||||
export {
|
export {
|
||||||
StarboardClient,
|
StarboardClient,
|
||||||
StarboardClientOptions,
|
StarboardClientOptions,
|
||||||
StarboardGuild,
|
StarboardGuild,
|
||||||
StarboardGuildOptions,
|
StarboardGuildOptions,
|
||||||
starMessageData,
|
starMessageData,
|
||||||
} from "./StarboardClient";
|
} from "./StarboardClient";
|
||||||
export { CodeClient, CodeData } from "./CodeClient";
|
export { CodeClient, CodeData } from "./CodeClient";
|
||||||
export { URLClient, URLData } from "./URLClient";
|
export { URLClient, URLData } from "./URLClient";
|
||||||
export {
|
export {
|
||||||
GiveawaysClient,
|
GiveawaysClient,
|
||||||
GiveawaySchema,
|
GiveawaySchema,
|
||||||
GiveawaysClientOptions,
|
GiveawaysClientOptions,
|
||||||
DefaultGiveawayMessages,
|
DefaultGiveawayMessages,
|
||||||
} from "./GiveawaysClient";
|
} from "./GiveawaysClient";
|
||||||
export { ImageClient } from "./ImageClient/index";
|
export { ImageClient } from "./ImageClient/index";
|
||||||
export { random8ball } from "./functions/8ball";
|
export { random8ball } from "./functions/8ball";
|
||||||
export { getreddit, RedditObject } from "./functions/reddit";
|
export { getreddit, RedditObject } from "./functions/reddit";
|
||||||
export { Pagination } from "./functions/pagination";
|
export { Pagination } from "./functions/pagination";
|
||||||
export { bool } from "./functions/bool";
|
export { bool } from "./functions/bool";
|
||||||
export { randint } from "./functions/randint";
|
export { randint } from "./functions/randint";
|
||||||
export { timer } from "./functions/timer";
|
export { timer } from "./functions/timer";
|
||||||
export { selectRandom } from "./functions/selectRandom";
|
export { selectRandom } from "./functions/selectRandom";
|
||||||
export { parseMS, parseString } from "./functions/ms";
|
export { parseMS, parseString } from "./functions/ms";
|
||||||
export { confirmation } from "./functions/confirmation";
|
export { confirmation } from "./functions/confirmation";
|
||||||
export { HHMMSS } from "./functions/HHMMSS";
|
export { HHMMSS } from "./functions/HHMMSS";
|
||||||
export { formatUpper } from "./functions/formatUpper";
|
export { formatUpper } from "./functions/formatUpper";
|
||||||
export {
|
export {
|
||||||
DiscordActivity,
|
DiscordActivity,
|
||||||
DiscordActivityOptions,
|
DiscordActivityOptions,
|
||||||
Applications,
|
Applications,
|
||||||
} from "./functions/discord-activity";
|
} from "./functions/discord-activity";
|
||||||
export { cleanText } from "./functions/cleanText";
|
export { cleanText } from "./functions/cleanText";
|
||||||
export { daysAgo } from "./functions/daysAgo";
|
export { daysAgo } from "./functions/daysAgo";
|
||||||
export { sleep } from "./functions/sleep";
|
export { sleep } from "./functions/sleep";
|
||||||
export { trimArray } from "./functions/trimArray";
|
export { trimArray } from "./functions/trimArray";
|
||||||
export { superscript } from "./functions/superscript";
|
export { superscript } from "./functions/superscript";
|
||||||
export { doublestruck } from "./functions/doublestruck";
|
export { doublestruck } from "./functions/doublestruck";
|
||||||
export { fractur } from "./functions/fractur";
|
export { fractur } from "./functions/fractur";
|
||||||
export { randomID } from "./functions/randomID";
|
export { randomID } from "./functions/randomID";
|
||||||
export { round } from "./functions/round";
|
export { round } from "./functions/round";
|
||||||
export {
|
export {
|
||||||
generatePassword,
|
generatePassword,
|
||||||
GeneratePasswordOptions,
|
GeneratePasswordOptions,
|
||||||
} from "./functions/generatePassword";
|
} from "./functions/generatePassword";
|
||||||
export { getLilaseDownloads } from "./functions/getLilaseDownloads";
|
export { getLilaseDownloads } from "./functions/getLilaseDownloads";
|
||||||
export { emojify } from "./functions/emojify";
|
export { emojify } from "./functions/emojify";
|
||||||
export { obama } from "./functions/obama";
|
export { obama } from "./functions/obama";
|
||||||
export { ConfigURLS, config } from "./config";
|
export { ConfigURLS, config } from "./config";
|
||||||
|
|
Loading…
Reference in a new issue