Cloud Zhang
2024-05-16 01bcf534119297468283976ed22a43c587f6cb38
1
2
3
4
5
6
7
8
9
10
export interface IAnyObject<T = any> {
  [key: string]: T;
}
 
export interface IInputEvent {
  target: {
    value: any;
    checked: boolean;
  };
}