remove unused files

This commit is contained in:
Skillz
2020-03-10 18:44:02 -04:00
parent e18ada64e2
commit 7dcd1de7de
2 changed files with 0 additions and 27 deletions

View File

@@ -1,9 +0,0 @@
export interface EmojiPayload {
name: string;
id?: string;
animated?: boolean;
}
export const createEmoji = (data: unknown) => {
console.log(data)
}

View File

@@ -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
}