UNPKG

@antv/s2

Version:

effective spreadsheet render core lib

8 lines (7 loc) 248 B
import { RowCell } from '../row-cell'; import { BaseCellPool } from './base'; export declare class RowCellPool extends BaseCellPool<RowCell> { private readonly cellIdPool; acquire(): RowCell | undefined; release(cell: RowCell): void; }