mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
16 lines
381 B
JavaScript
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;
|