UNPKG

ketcher-core

Version:
12 lines (11 loc) 347 B
import { SubChainNode } from "./types"; import { PolymerBond } from '../PolymerBond'; export declare class BaseSubChain { nodes: Array<SubChainNode>; bonds: Array<PolymerBond>; constructor(); get lastNode(): SubChainNode; get firstNode(): SubChainNode; add(node: SubChainNode): void; get length(): number; }