dimensions-helper.service.d.ts 199 B

1234567
  1. /**
  2. * Gets the width of the scrollbar. Nesc for windows
  3. * http://stackoverflow.com/a/13382873/888165
  4. */
  5. export declare class DimensionsHelper {
  6. getDimensions(element: Element): ClientRect;
  7. }