From 7dcd1de7de9012e130c6f535f7d44f26c602d469 Mon Sep 17 00:00:00 2001 From: Skillz Date: Tue, 10 Mar 2020 18:44:02 -0400 Subject: [PATCH] remove unused files --- structures/emoji.ts | 9 --------- types/emoji.ts | 18 ------------------ 2 files changed, 27 deletions(-) delete mode 100644 structures/emoji.ts delete mode 100644 types/emoji.ts 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 -}