UNPKG
synthra-client
Version:
latest (0.0.1)
0.0.1
A user-friendly Lavalink client designed for NodeJS.
synthra-client
/
dist
/
structures
/
Plugin.js
15 lines
(14 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
Plugin
=
void
0
;
class
Plugin
{ name;
/** *
@param
name The name of the plugin */
constructor
(
name
) {
this
.
name
= name; }
load
(
manager
) { } }
exports
.
Plugin
=
Plugin
;