ketcher-core
Version:
Web-based molecule sketcher
10 lines (9 loc) • 451 B
TypeScript
import { TransientView } from './TransientView';
import type { D3SvgElementSelection } from "../../types";
export declare type LineLengthHighlightViewParams = {
currentPosition: number;
};
export declare class LineLengthHighlightView extends TransientView {
static readonly viewName = "LineLengthHighlightView";
static show(transientLayer: D3SvgElementSelection<SVGGElement, void>, params: LineLengthHighlightViewParams): void;
}