minishouyin/node_modules/rc-util/lib/getScrollBarSize.d.ts
2025-11-12 11:35:57 +08:00

8 lines
227 B
TypeScript

type ScrollBarSize = {
width: number;
height: number;
};
export default function getScrollBarSize(fresh?: boolean): number;
export declare function getTargetScrollBarSize(target: HTMLElement): ScrollBarSize;
export {};