mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
36 lines
713 B
TypeScript
36 lines
713 B
TypeScript
import MakiObject from "./MakiObject";
|
|
import { unimplementedWarning } from "../utils";
|
|
|
|
class ConfigAttribute extends MakiObject {
|
|
/**
|
|
* getclassname()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "ConfigAttribute";
|
|
}
|
|
|
|
setdata(value: string): void {
|
|
return unimplementedWarning("setdata");
|
|
}
|
|
|
|
getdata(): string {
|
|
return unimplementedWarning("getdata");
|
|
}
|
|
|
|
ondatachanged(): void {
|
|
this.js_trigger("onDataChanged");
|
|
}
|
|
|
|
getparentitem() {
|
|
return unimplementedWarning("getparentitem");
|
|
}
|
|
|
|
getattributename(): string {
|
|
return unimplementedWarning("getattributename");
|
|
}
|
|
}
|
|
|
|
export default ConfigAttribute;
|