Type anys

This commit is contained in:
Adria Navarro 2024-12-27 09:49:05 +01:00
parent 7811f11599
commit 51688543b1
1 changed files with 8 additions and 8 deletions

View File

@ -20,14 +20,14 @@ interface ScrollStore {
} }
interface ScrollDerivedStore { interface ScrollDerivedStore {
stickyWidth: Readable<any> stickyWidth: Readable<number>
contentHeight: Readable<any> contentHeight: Readable<number>
contentWidth: Readable<any> contentWidth: Readable<number>
screenWidth: Readable<any> screenWidth: Readable<number>
maxScrollTop: Readable<any> maxScrollTop: Readable<number>
maxScrollLeft: Readable<any> maxScrollLeft: Readable<number>
showHScrollbar: Readable<any> showHScrollbar: Readable<number>
showVScrollbar: Readable<any> showVScrollbar: Readable<number>
} }
export type Store = ScrollStore & ScrollDerivedStore export type Store = ScrollStore & ScrollDerivedStore