UNPKG

tdesign-react

Version:
11 lines (10 loc) 353 B
import React from 'react'; import { StyledProps } from '../common'; import { TdAffixProps } from './type'; export interface AffixProps extends TdAffixProps, StyledProps { } export interface AffixRef { handleScroll: () => void; } declare const Affix: React.ForwardRefExoticComponent<AffixProps & React.RefAttributes<AffixRef>>; export default Affix;