UNPKG

269 BTypeScriptView Raw
1export interface ScrollbarMeasurements {
2 /** Current height of the scrollbar */
3 height: number;
4 /** Current width of the scrollbar */
5 width: number;
6}
7declare const useScrollbarSize: () => ScrollbarMeasurements;
8export default useScrollbarSize;