pull/1021/head
Cagatay Civici 2021-02-17 18:13:41 +03:00
parent eb6460d30c
commit 49f33df9cd
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
interface ScrollToProps { interface ScrollTopProps {
target?: string; target?: string;
threshold?: number; threshold?: number;
icon?: string; icon?: string;
@ -6,7 +6,7 @@ interface ScrollToProps {
} }
declare class ScrollTop { declare class ScrollTop {
$props: ScrollToProps; $props: ScrollTopProps;
} }
export default ScrollTop; export default ScrollTop;