pex-gui
Version:
GUI controls for PEX.
14 lines (13 loc) • 357 B
TypeScript
export default GUIControl;
declare class GUIControl {
constructor(options: any);
setPosition(x: any, y: any): void;
x: any;
y: any;
getNormalizedValue(idx: any): any;
setNormalizedValue(val: any, idx: any): void;
getSerializedValue(): any;
setSerializedValue(value: any): void;
getValue(): any;
getStrValue(): any;
}