mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
21 lines
384 B
TypeScript
21 lines
384 B
TypeScript
import GuiObject from "./GuiObject";
|
|
import { unimplementedWarning } from "../utils";
|
|
|
|
class QueryList extends GuiObject {
|
|
/**
|
|
* getClassName()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "QueryList";
|
|
}
|
|
|
|
onresetquery() {
|
|
unimplementedWarning("onresetquery");
|
|
return;
|
|
}
|
|
}
|
|
|
|
export default QueryList;
|