完全跑通1.0版本
This commit is contained in:
14
frontend/node_modules/element-plus/lib/directives/mousewheel/index.d.ts
generated
vendored
Normal file
14
frontend/node_modules/element-plus/lib/directives/mousewheel/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import { ObjectDirective } from "vue";
|
||||
import { NormalizedWheelEvent } from "normalize-wheel-es";
|
||||
|
||||
//#region ../../packages/directives/mousewheel/index.d.ts
|
||||
declare const SCOPE = "_Mousewheel";
|
||||
interface WheelElement extends HTMLElement {
|
||||
[SCOPE]: null | {
|
||||
wheelHandler?: (event: WheelEvent) => void;
|
||||
};
|
||||
}
|
||||
type MousewheelCallback = (e: WheelEvent, normalized: NormalizedWheelEvent) => void;
|
||||
declare const Mousewheel: ObjectDirective<WheelElement, MousewheelCallback>;
|
||||
//#endregion
|
||||
export { MousewheelCallback, SCOPE, WheelElement, Mousewheel as default };
|
||||
Reference in New Issue
Block a user