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
/
Channel
/
Channel.d.ts
9 lines
(8 loc)
•
282 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
EvolveClient
}
from
"../../Client/EvolveClient"
;
import
{
CHANNELTYPES
}
from
"../../Utils/Constants"
;
export
declare
class
Channel
{
client
:
EvolveClient
;
id
:
string
;
type
:
CHANNELTYPES
;
constructor
(
id
:
string
,
type
: CHANNELTYPES,
client
:
EvolveClient
); }