UNPKG
n8n-nodes-discord-self
Version:
latest (0.1.0)
0.1.0
n8n community nodes for Discord selfbot via discord.js-selfbot-v13 (use at your own risk)
n8n-nodes-discord-self
/
dist
/
nodes
/
DiscordSelf
/
DiscordSelfTrigger.node.d.ts
8 lines
(7 loc)
•
292 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
{
INodeType
,
INodeTypeDescription
,
ITriggerFunctions
}
from
'n8n-workflow'
;
export
declare
class
DiscordSelfTrigger
implements
INodeType
{
description
:
INodeTypeDescription
;
trigger
(
this
:
ITriggerFunctions
):
Promise
<{
closeFunction
:
() =>
Promise
<
void
>; }>; }