@glowjs/core
Version:
GlowJS数字孪生引擎核心库。
31 lines (30 loc) • 636 B
TypeScript
import { Point3D } from '../misc';
import { Container } from '../runtime';
/**
* 链路提示信息
*/
export declare class LinkTip extends Container {
private _title;
private _name;
private _anchor;
private _line;
/**
* 链路提示信息
*/
constructor();
/**
* 获取或设置位置
*/
get position(): Point3D;
set position(value: Point3D);
/**
* 获取或设置标题
*/
get title(): string;
set title(value: string);
/**
* 获取或设置提示信息
*/
get tip(): string;
set tip(value: string);
}