lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
15 lines (14 loc) • 561 B
TypeScript
import Appendable from "../display/core/Appendable";
import IText from "../interface/IText";
export default class Text extends Appendable implements IText {
static componentName: string;
static defaults: Partial<import("../interface/utils/Defaults").default<IText>>;
static schema: Required<import("../interface/utils/extractProps").ExtractProps<IText>>;
el: HTMLDivElement;
constructor();
protected disposeNode(): void;
get opacity(): number;
set opacity(value: number);
get value(): string;
set value(value: string);
}