larakazagumo
Version:
A shoukaku wrapper with built-in queue support.
25 lines (24 loc) • 562 B
TypeScript
import { Kazagumo } from '../Index';
import { KazagumoPlugin as Plugin } from '../Modules/Interfaces';
export declare class KazagumoPlugin extends Plugin {
client: any;
/**
* Kazagumo instance.
*/
kazagumo: Kazagumo | null;
/**
* Initialize the plugin.
* @param client Discord.Client
*/
constructor(client: any);
/**
* Load the plugin.
* @param kazagumo Kazagumo
*/
load(kazagumo: Kazagumo): void;
/**
* Unload the plugin.
*/
unload(): void;
private onVoiceStateUpdate;
}