UNPKG

dumi-theme-antd

Version:

Ant Design 5.0 官网风格类似的 dumi2 主题插件

9 lines (8 loc) 344 B
import React from 'react'; import type { IntersectionObserverProps } from 'react-intersection-observer'; declare type InViewSuspenseProps = Pick<IntersectionObserverProps, 'delay'> & { fallback?: React.ReactNode; children?: React.ReactNode; }; declare const InViewSuspense: React.FC<InViewSuspenseProps>; export default InViewSuspense;