webamp/modern/src/runtime/Frame.ts
Jordan Eldredge 4bcb0e0575 Upgrade to std.mi from Winamp 5.66 (#936)
* Upgrade to std.mi from Winamp 5.66

* Add missing type annotation

* Update usage data
2019-11-30 13:42:53 -08:00

29 lines
554 B
TypeScript

import GuiObject from "./GuiObject";
import * as Utils from "../utils";
export default class Frame extends GuiObject {
/**
* getClassName()
*
* Returns the class name for the object.
* @ret The class name.
*/
getclassname() {
return "Frame";
}
getposition() {
Utils.unimplementedWarning("getposition");
return;
}
setposition(position: number) {
Utils.unimplementedWarning("setposition");
return;
}
onsetposition(position: number) {
Utils.unimplementedWarning("onsetposition");
return;
}
}