@fortune-sheet/core
Version:
FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
6 lines (5 loc) • 634 B
TypeScript
import { Context } from "../context";
import { GlobalCache } from "../types";
export declare function onCellsMoveStart(ctx: Context, globalCache: GlobalCache, e: MouseEvent, scrollbarX: HTMLDivElement, scrollbarY: HTMLDivElement, container: HTMLDivElement): void;
export declare function onCellsMove(ctx: Context, globalCache: GlobalCache, e: MouseEvent, scrollbarX: HTMLDivElement, scrollbarY: HTMLDivElement, container: HTMLDivElement): void;
export declare function onCellsMoveEnd(ctx: Context, globalCache: GlobalCache, e: MouseEvent, scrollbarX: HTMLDivElement, scrollbarY: HTMLDivElement, container: HTMLDivElement): void;