Skip to main content
Module

x/harmony/src/gateway/handlers/reconnect.ts

An easy to use Discord API Library for Deno.
Go to Latest
File
import type { Gateway, GatewayEventHandler } from '../mod.ts'
export const reconnect: GatewayEventHandler = async ( gateway: Gateway, d: unknown) => { gateway.client.emit('reconnect', gateway.shards?.[0] ?? 0) gateway.reconnect()}