ketcher-core
Version:
Web-based molecule sketcher
8 lines (7 loc) • 410 B
TypeScript
import type { D3SvgElementSelection } from "../../types";
import type { PolymerBond } from "../../../../domain/entities/PolymerBond";
import { TransientView } from './TransientView';
export declare class BondSnapView extends TransientView {
static readonly viewName = "BondSnapView";
static show<P extends PolymerBond>(transientLayer: D3SvgElementSelection<SVGGElement, void>, bond: P): void;
}