10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
|
|
/**
|
||
|
|
* @description: 输入框事件
|
||
|
|
*/
|
||
|
|
declare interface ChangeEvent extends Event {
|
||
|
|
target: HTMLInputElement;
|
||
|
|
}
|
||
|
|
interface WheelEvent {
|
||
|
|
path?: EventTarget[];
|
||
|
|
}
|