@antv/x6
Version:
JavaScript diagramming library that uses SVG and HTML for rendering.
11 lines (10 loc) • 391 B
TypeScript
import { Node } from '../model/node';
export declare class Base<Properties extends Node.Properties = Node.Properties> extends Node<Properties> {
get label(): string | undefined | null;
set label(val: string | undefined | null);
getLabel(): string;
setLabel(label?: string | null, options?: Node.SetOptions): this;
removeLabel(): this;
}
export declare namespace Base {
}