UNPKG

ketcher-core

Version:
16 lines (15 loc) 518 B
import type { ReStruct } from "../../../render"; import BaseOperation from '../BaseOperation'; declare type Data = { atomId: number; attachmentPointType: any; attachmentPointId: number; }; declare class RGroupAttachmentPointRemove extends BaseOperation { readonly data: Data; static InverseConstructor: new () => BaseOperation; constructor(attachmentPointId?: number); execute(restruct: ReStruct): void; invert(): BaseOperation; } export { RGroupAttachmentPointRemove };