webamp/modern/src/runtime/JsWinampAbstractionLayer.js
2019-08-19 06:27:47 -07:00

16 lines
381 B
JavaScript

import Group from "./Group";
// Needs to behavve like a group to work with top level scripts that call `getScriptGroup`
class JsWinampAbstractionLayer extends Group {
/**
* getclassname()
*
* Returns the class name for the object.
* @ret The class name.
*/
getclassname() {
return "JsWinampAbstractionLayer";
}
}
export default JsWinampAbstractionLayer;