ant-design-vue
Version:
An enterprise-class UI design language and Vue-based implementation
10 lines (9 loc) • 366 B
TypeScript
export declare type FocusEventHandler = (e: FocusEvent) => void;
export declare type MouseEventHandler = (e: MouseEvent) => void;
export declare type KeyboardEventHandler = (e: KeyboardEvent) => void;
export declare type ChangeEvent = Event & {
target: {
value?: string | undefined;
};
};
export declare type EventHandler = (...args: any[]) => void;