tdesign-react
Version:
TDesign Component for React
11 lines (10 loc) • 353 B
TypeScript
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;