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
/
Structures
/
Guild
/
Role.d.ts
15 lines
(14 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
IRole
}
from
"../.."
;
export
declare
class
Role
{
id
:
string
;
name
:
string
;
color
:
number
;
hoist
:
boolean
;
position
:
number
;
permissions
:
number
;
managed
:
boolean
;
mentionable
:
boolean
;
data
:
IRole
;
constructor
(
data
:
IRole
);
private
_handle; }