mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 17:00:08 +00:00
10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
export interface EmojiPayload {
|
|
name: string;
|
|
id?: string;
|
|
animated?: boolean;
|
|
}
|
|
|
|
export const createEmoji = (data: unknown) => {
|
|
console.log(data)
|
|
}
|