UNPKG

246 BTypeScriptView Raw
1/**
2 * Gets the width of the scrollbar. Nesc for windows
3 * http://stackoverflow.com/a/13382873/888165
4 */
5export declare class ScrollbarHelper {
6 private document;
7 width: number;
8 constructor(document: any);
9 getWidth(): number;
10}