(options?: ScrollToOptions)
| 25 | scrollLeft = 0; |
| 26 | scrollTop = 0; |
| 27 | scrollTo(options?: ScrollToOptions) { |
| 28 | if (!options) return; |
| 29 | if (typeof options.left === 'number') this.scrollLeft = options.left; |
| 30 | if (typeof options.top === 'number') this.scrollTop = options.top; |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | export class RRDocument extends BaseRRDocument implements IRRDocument { |
no outgoing calls
no test coverage detected