File tree Expand file tree Collapse file tree
packages/components/table Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export interface BaseTableRef {
4646 tableHtmlElement : HTMLTableElement ;
4747 tableContentElement : HTMLDivElement ;
4848 affixHeaderElement : HTMLDivElement ;
49+ onAffixHeaderMount : ( nodeOrCallback : HTMLDivElement | ( ( node : HTMLDivElement ) => void ) ) => HTMLDivElement | void ;
4950 refreshTable : ( ) => void ;
5051 scrollToElement : ( params : ScrollToElementParams ) => void ;
5152 scrollColumnIntoView : ( columnIndex : string ) => void ;
Original file line number Diff line number Diff line change 11import { get , isFunction , isObject } from 'lodash-es' ;
22
33import { getIEVersion } from '@tdesign/common-js/utils/helper' ;
4- import { AffixProps } from '../affix' ;
5- import { ClassName , HTMLElementAttributes } from '../common' ;
4+
5+ import type { AffixProps } from '../affix' ;
6+ import type { ClassName , HTMLElementAttributes } from '../common' ;
67import type {
78 BaseTableCellParams ,
89 CellData ,
You can’t perform that action at this time.
0 commit comments