@antv/s2
Version:
effective spreadsheet render core lib
12 lines • 386 B
JavaScript
import { get } from 'lodash';
import { TableColCell } from './table-col-cell';
export class TableCornerCell extends TableColCell {
getStyle(name) {
var _a;
return name ? get(this.theme, name) : (_a = this.theme) === null || _a === void 0 ? void 0 : _a.cornerCell;
}
showSortIcon() {
return false;
}
}
//# sourceMappingURL=table-corner-cell.js.map