mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 08:50:07 +00:00
remove unused files
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
export interface EmojiPayload {
|
||||
name: string;
|
||||
id?: string;
|
||||
animated?: boolean;
|
||||
}
|
||||
|
||||
export const createEmoji = (data: unknown) => {
|
||||
console.log(data)
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user