Moved unused / example plugins to outside src.
This commit is contained in:
parent
e0cc0b2f7c
commit
e9b960f71f
2 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
let i = 1, k = 1;
|
||||
export default class ExamplePlugin {
|
||||
class ExamplePlugin {
|
||||
/**
|
||||
* Private variables for interaction in plugins
|
||||
*/
|
||||
|
@ -58,3 +58,5 @@ export default class ExamplePlugin {
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
module.exports = ExamplePlugin;
|
|
@ -1,4 +1,4 @@
|
|||
export default class sendSongToTitlebar {
|
||||
class sendSongToTitlebar {
|
||||
/**
|
||||
* Base Plugin Details (Eventually implemented into a GUI in settings)
|
||||
*/
|
||||
|
@ -34,4 +34,6 @@ export default class sendSongToTitlebar {
|
|||
* @param attributes Music Attributes
|
||||
*/
|
||||
onNowPlayingItemDidChange(attributes: object): void {}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = sendSongToTitlebar;
|
Loading…
Add table
Add a link
Reference in a new issue