UNPKG
@evolvejs/core
Version:
latest (0.3.2-alpha)
0.3.2-alpha
An advanced Discord API wrapper with TS and JS support
evolve.js.org
EvolveJS/EvolveJS
@evolvejs/core
/
dist
/
Interfaces
/
EmojiOptions.d.ts
13 lines
(12 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
IRole
}
from
"./RoleOptions"
;
import
{
IUser
}
from
"./UserOptions"
;
export
interface
IEmoji
{
id
:
string
|
null
;
name
:
string
|
null
;
roles
?:
IRole
[];
user
:
IUser
;
require_colons
?:
boolean
;
managed
?:
boolean
;
animated
?:
boolean
;
available
?:
boolean
; }