6 lines
156 B
TypeScript
6 lines
156 B
TypeScript
export interface IScrollbarWidth {
|
|
(force?: boolean): number | undefined;
|
|
__cache?: number;
|
|
}
|
|
export declare const scrollbarWidth: IScrollbarWidth;
|