16 lines
		
	
	
		
			406 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			406 B
		
	
	
	
		
			TypeScript
		
	
	
| export type FocusEventHandler = (e: FocusEvent) => void;
 | |
| export type MouseEventHandler = (e: MouseEvent) => void;
 | |
| export type KeyboardEventHandler = (e: KeyboardEvent) => void;
 | |
| export type ChangeEvent = Event & {
 | |
|   target: {
 | |
|     value?: string | undefined;
 | |
|   };
 | |
| };
 | |
| export type CheckboxChangeEvent = Event & {
 | |
|   target: {
 | |
|     checked?: boolean;
 | |
|   };
 | |
| };
 | |
| 
 | |
| export type EventHandler = (...args: any[]) => void;
 |