1 |
import { formatDistanceStrict, formatDistanceToNowStrict } from "date-fns"; |
import { formatDistanceStrict, formatDistanceToNowStrict } from "date-fns"; |
2 |
import { APIEmbedField } from "discord-api-types/v9"; |
import { APIEmbedField } from "discord-api-types/v9"; |
3 |
import { Util, Message, Interaction, CacheType, CommandInteraction } from "discord.js"; |
import { Util, Message, CacheType, CommandInteraction } from "discord.js"; |
4 |
import Client from "../../client/Client"; |
import Client from "../../client/Client"; |
5 |
import MessageEmbed from "../../client/MessageEmbed"; |
import MessageEmbed from "../../client/MessageEmbed"; |
6 |
import CommandOptions from "../../types/CommandOptions"; |
import CommandOptions from "../../types/CommandOptions"; |
7 |
import InteractionOptions from "../../types/InteractionOptions"; |
import InteractionOptions from "../../types/InteractionOptions"; |
8 |
import { emoji } from "../../utils/Emoji"; |
import { emoji } from "../../utils/Emoji"; |
9 |
import getUser from "../../utils/getUser"; |
import getUser from "../../utils/getUser"; |
|
import { parseUser } from "../../utils/parseInput"; |
|
10 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
import BaseCommand from "../../utils/structures/BaseCommand"; |
11 |
import { getUserBadges } from "./ProfileCommand"; |
import { getUserBadges } from "./ProfileCommand"; |
12 |
|
|