ketcher-core
Version:
Web-based molecule sketcher
13 lines (12 loc) • 561 B
TypeScript
import { TransientView } from './TransientView';
import { D3SvgElementSelection } from "../../types";
import { BaseMonomer, HydrogenBond, PolymerBond } from "../../../../domain/entities";
export declare type AngleSnapViewParams = {
connectedMonomer: BaseMonomer;
polymerBond: PolymerBond | HydrogenBond;
isBondLengthSnapped: boolean;
};
export declare class AngleSnapView extends TransientView {
static viewName: string;
static show(transientLayer: D3SvgElementSelection<SVGGElement, void>, params: AngleSnapViewParams): void;
}