@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 638 B
TypeScript
export default LabeledValueView;
declare class LabeledValueView extends View<HTMLElement> {
/**
* @template T
* @param {string} klass
* @param {string|ObservedString} label
* @param {T} value
* @param {string} [unit]
* @param {function(T):View} [valueViewFactory]
* @constructor
*/
constructor({ klass, label, value, unit, valueViewFactory }: string);
el: Element;
/**
*
* @type {LabelView}
*/
vLabel: LabelView;
vValue: any;
}
import View from "../../View.js";
import LabelView from "../../common/LabelView.js";
//# sourceMappingURL=LabeledValueView.d.ts.map