diff --git a/structures/emoji.ts b/structures/emoji.ts deleted file mode 100644 index 9232abc85..000000000 --- a/structures/emoji.ts +++ /dev/null @@ -1,9 +0,0 @@ -export interface EmojiPayload { - name: string; - id?: string; - animated?: boolean; -} - -export const createEmoji = (data: unknown) => { - console.log(data) -} diff --git a/types/emoji.ts b/types/emoji.ts deleted file mode 100644 index b717060c9..000000000 --- a/types/emoji.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { User } from "../structures/user"; - -export interface Emoji { - /** emoji id. It will be null for default discord emojis. */ - id: string | null - /** The name of the emoji. (can be null only in reaction emoji objects when the custom emoji doesnt exist anymore) */ - name: string | null - /** array of role ids roles this emoji is whitelisted to */ - roles?: string[] - /** User that created this emoji */ - user?: User - /** whether this emoji must be wrapped in colons */ - require_colons?: boolean - /** whether this emoji is managed */ - managed?: boolean - /** whether this emoji is animated */ - animated?: boolean -}