UNPKG

@fortune-sheet/core

Version:

FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets

11 lines (10 loc) 828 B
import { Context } from "../context"; import { Rect } from "../types"; export declare const dropCellCache: Record<string, any>; export declare function showDropCellSelection({ width, height, top, left }: Rect, container: HTMLDivElement): void; export declare function hideDropCellSelection(container: HTMLDivElement): void; export declare function createDropCellRange(ctx: Context, e: MouseEvent, container: HTMLDivElement): void; export declare function onDropCellSelect(ctx: Context, e: MouseEvent, scrollX: HTMLDivElement, scrollY: HTMLDivElement, container: HTMLDivElement): void; export declare function getTypeItemHide(ctx: Context): boolean[]; export declare function updateDropCell(ctx: Context): void; export declare function onDropCellSelectEnd(ctx: Context, e: MouseEvent, container: HTMLDivElement): void;