ketcher-core
Version:
Web-based molecule sketcher
16 lines (15 loc) • 518 B
TypeScript
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 };