harmony/src/types/emoji.ts
2020-12-26 10:34:15 +04:00

12 lines
247 B
TypeScript

import { UserPayload } from './user.ts'
export interface EmojiPayload {
id: string | null
name: string | null
roles?: string[]
user?: UserPayload
require_colons?: boolean
managed?: boolean
animated?: boolean
available?: boolean
}