scrollbar-helper.service.d.ts 246 B

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