event.d.ts 166 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 /** * @description: 输入框事件 */ declare interface ChangeEvent extends Event { target: HTMLInputElement; } interface WheelEvent { path?: EventTarget[]; }