UNPKG

fullpage-scroll-component

Version:
11 lines (10 loc) 332 B
/// <reference types="react" /> /** * 페이지의 스크롤링에 관여하는 훅을 담은 fake 컴포넌트 입니다. */ interface DebouncedScrollProps { delay?: number; isPreventDefault?: boolean; } export default function DebouncedScroll({ isPreventDefault, delay, }: DebouncedScrollProps): JSX.Element; export {};