ant-design-vue/components/_util/EventInterface.ts

4 lines
177 B
TypeScript

export type FocusEventHandler = (e: FocusEvent) => void;
export type MouseEventHandler = (e: MouseEvent) => void;
export type KeyboardEventHandler = (e: KeyboardEvent) => void;