UNPKG
synthra-client
Version:
latest (0.0.1)
0.0.1
A user-friendly Lavalink client designed for NodeJS.
synthra-client
/
dist
/
structures
/
Plugin.d.ts
10 lines
(9 loc)
•
210 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import { Synthra }
from
"./Manager"
; export
declare
class
Plugin
{ name:
string
;
/** *
@param
name The name of the plugin */
constructor
(
name
:
string
);
load
(
manager
: Synthra):
void
; }