webamp/modern/src/runtime/JsGroupDef.js
Jordan Eldredge 79ac60f1f1 Modern integration (#833)
* Make modern part of the code base

`yarn modern` will now start a dev server with the modern app running.

The debugger is not yet setup

`yarn test` will run all the tests, both Webamp and "modern".

* Let debug work

* Prettier

* Ignore lint errors for now

* Point test at the now skin location
2019-11-30 13:42:53 -08:00

15 lines
261 B
JavaScript

import MakiObject from "./MakiObject";
class JsGroupDef extends MakiObject {
/**
* getclassname()
*
* Returns the class name for the object.
* @ret The class name.
*/
getclassname() {
return "GroupDef";
}
}
export default JsGroupDef;