UNPKG

@aliretail/react-materials-components

Version:
11 lines (10 loc) 432 B
import * as React from 'react'; import { AffixProps } from '@alifd/next/types/affix'; export interface FixedNavProps extends Omit<AffixProps, 'container'> { /** 没有默认hash 的时候会用这个值 */ defaultHash: string; /** 设置 Affix 需要监听滚动事件的容器元素 */ container?: (target: HTMLDivElement) => HTMLElement; } declare const FixedNav: React.FC<FixedNavProps>; export default FixedNav;