ketcher-core
Version:
Web-based molecule sketcher
7 lines (6 loc) • 312 B
TypeScript
import { type SVGPathAttributes, type BondVectors } from "./constants";
import { BondType } from "../../../../domain/entities/CoreBond";
declare class SingleBondPathRenderer {
static preparePaths(bondVectors: BondVectors, type?: BondType): SVGPathAttributes[];
}
export default SingleBondPathRenderer;