mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 19:18:07 +08:00
bd87079e12
* feat(image): add new features * fix: lint error * update test * update code * update docs * perf: reset currentIndex after close * update code * update code * update code * update code * update code * add rootClassName props * fix lint
20 lines
656 B
TypeScript
20 lines
656 B
TypeScript
export type FocusEventHandler = (e: FocusEvent) => void;
|
|
export type MouseEventHandler = (e: MouseEvent) => void;
|
|
export type KeyboardEventHandler = (e: KeyboardEvent) => void;
|
|
export type CompositionEventHandler = (e: CompositionEvent) => void;
|
|
export type ClipboardEventHandler = (e: ClipboardEvent) => void;
|
|
export type ChangeEventHandler = (e: ChangeEvent) => void;
|
|
export type WheelEventHandler = (e: WheelEvent) => void;
|
|
export type ChangeEvent = Event & {
|
|
target: {
|
|
value?: string | undefined;
|
|
};
|
|
};
|
|
export type CheckboxChangeEvent = Event & {
|
|
target: {
|
|
checked?: boolean;
|
|
};
|
|
};
|
|
|
|
export type EventHandler = (...args: any[]) => void;
|