ketcher-core
Version:
Web-based molecule sketcher
14 lines (13 loc) • 612 B
TypeScript
import type { LayoutMode } from "./types";
import { BaseMode } from "./BaseMode";
import { Command } from "../../../domain/entities/Command";
import type { DrawingEntitiesManager } from "../../../domain/entities/DrawingEntitiesManager";
export declare class FlexMode extends BaseMode {
constructor(previousMode?: LayoutMode);
initialize(): Command;
getNewNodePosition(): import("../../..").Vec2;
applyAdditionalPasteOperations(mergedDrawingEntities: DrawingEntitiesManager): Command;
isPasteAllowedByMode(): boolean;
isPasteAvailable(): boolean;
scrollForView(): void;
}