Gathering detailed insights and metrics for @types/jquery-mousewheel
Gathering detailed insights and metrics for @types/jquery-mousewheel
Gathering detailed insights and metrics for @types/jquery-mousewheel
Gathering detailed insights and metrics for @types/jquery-mousewheel
The repository for high quality TypeScript type definitions.
npm install @types/jquery-mousewheel
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,012 Stars
89,722 Commits
30,437 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 10, 2025
Latest Version
3.1.12
Package Id
@types/jquery-mousewheel@3.1.12
Unpacked Size
6.62 kB
Size
2.14 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install --save @types/jquery-mousewheel
This package contains type definitions for jquery-mousewheel (https://github.com/jquery/jquery-mousewheel).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery-mousewheel.
1/// <reference types="jquery" /> 2 3declare global { 4 namespace JQueryMousewheel { 5 type JQueryMousewheelEventHook< 6 O = JQueryMousewheelEventObject, 7 D = JQueryMousewheelEventData, 8 > = 9 & { version: string } 10 & { setup: (Extract<JQuery.SpecialEventHook<O, D>, { setup: any }>)["setup"] } 11 & { teardown: (Extract<JQuery.SpecialEventHook<O, D>, { teardown: any }>)["teardown"] } 12 & { getLineHeight(elem: Parameters<JQuery["appendTo"]>[0]): number | never } 13 & { getPageHeight(elem: Parameters<JQuery["appendTo"]>[0]): number | never } 14 & { 15 settings: { 16 adjustOldDeltas: boolean; 17 normalizeOffset: boolean; 18 }; 19 }; 20 type JQueryMousewheelEventHandler = (eventObject: JQueryMousewheelEventObject, ...args: any[]) => any; 21 interface JQueryMousewheelEventObject extends JQueryEventObject { 22 deltaX: number; 23 deltaY: number; 24 deltaFactor: number; 25 deltaMode: number; 26 absDelta: number; 27 offsetX: number; 28 offsetY: number; 29 } 30 interface JQueryMousewheelEventData { 31 "mousewheel-line-height": number; 32 "mousewheel-page-height": number; 33 } 34 } 35 namespace JQuery { 36 interface SpecialEventHooks { 37 mousewheel: JQueryMousewheel.JQueryMousewheelEventHook; 38 } 39 } 40 interface JQuery { 41 on(event: "mousewheel", handler: JQueryMousewheel.JQueryMousewheelEventHandler): JQuery; 42 mousewheel(handler: JQueryMousewheel.JQueryMousewheelEventHandler): JQuery; 43 unmousewheel(): JQuery; 44 } 45} 46 47/** 48 * Factory function for Browserify in Node.js/CommonJS environments. 49 * Modifies `$` to include the `jquery-mousewheel` library. 50 * Designed for use with export-related JS features. 51 * 52 * @param $ JQuery static library object. 53 */ 54declare function factory($: JQueryStatic): void; 55export = factory; 56
These definitions were written by Brian Surowiec.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More