You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import type { Position } from 'css-box-model';
|
|
|
|
// Not guarenteed to scroll by the entire amount
|
|
export default (change: Position): void => {
|
|
window.scrollBy(change.x, change.y);
|
|
};
|