@antv/s2
Version:
effective spreadsheet render core lib
10 lines (9 loc) • 382 B
TypeScript
import { DataCell } from '../cell/data-cell';
import type { CellMeta } from '../common';
export declare class TableDataCell extends DataCell {
protected getLinkFieldStyle(): string;
protected shouldDrawResizeArea(): boolean;
drawResizeArea(): void;
protected isDisableHover(cellMeta: CellMeta): boolean;
protected getResizedTextMaxLines(): number | undefined;
}