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