alm
Version:
The best IDE for TypeScript
14 lines (11 loc) • 477 B
TypeScript
// Type definitions for chrome only apis
// Project: http://google.com/chrome
// Definitions by: basarat <https://github.com/basarat/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface Element {
/**
* https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded
* the element is centered if center is true (default), otherwise it stays to the nearest edge.
*/
scrollIntoViewIfNeeded(center?: boolean): void;
}