
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
@types/scroll-into-view
Advanced tools
TypeScript definitions for scroll-into-view
npm install --save @types/scroll-into-view
This package contains type definitions for scroll-into-view (https://github.com/KoryNunn/scroll-into-view).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/scroll-into-view.
declare namespace __ScrollIntoView {
interface Settings {
time?: number | undefined;
ease?: ((value: number) => number) | undefined;
validTarget?: ((target: HTMLElement, parentsScrolled: number) => boolean) | undefined;
align?: Alignment | undefined;
isScrollable?:
| ((target: HTMLElement, defaultIsScrollable: (target: HTMLElement) => boolean) => boolean)
| undefined;
isWindow?: ((target: HTMLElement) => boolean) | undefined;
cancellable?: boolean | undefined;
maxSynchronousAlignments?: number | undefined;
debug?: boolean | undefined;
}
interface Alignment {
/** 0 to 1, default 0.5 (center) */
top?: number | undefined;
/** 0 to 1, default 0.5 (center) */
left?: number | undefined;
/** pixels to offset top alignment */
topOffset?: number | undefined;
/** pixels to offset left alignment */
leftOffset?: number | undefined;
/** boolean to prevent X scrolling */
lockX?: boolean | undefined;
/** boolean to prevent Y scrolling */
lockY?: boolean | undefined;
}
/** type will be 'complete' if the scroll completed or 'canceled' if the current scroll was canceled by a new scroll */
type callbackParameterType = "complete" | "canceled";
type Callback = (type: callbackParameterType) => void;
interface ScrollIntoView {
(target: HTMLElement, callback?: __ScrollIntoView.Callback): void;
(target: HTMLElement, settings: __ScrollIntoView.Settings, callback?: __ScrollIntoView.Callback): void;
}
}
declare module "scroll-into-view" {
var scrollIntoView: __ScrollIntoView.ScrollIntoView;
export = scrollIntoView;
}
These definitions were written by zivni, Thibaut, and goodCycle.
FAQs
TypeScript definitions for scroll-into-view
We found that @types/scroll-into-view demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.