- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
32 lines
920 B
TypeScript
32 lines
920 B
TypeScript
import UIEvent from '../UIEvent.js';
|
|
import EventTarget from '../EventTarget.js';
|
|
import IMouseEventInit from './IMouseEventInit.js';
|
|
/**
|
|
*
|
|
*/
|
|
export default class MouseEvent extends UIEvent {
|
|
readonly altKey: boolean;
|
|
readonly button: number;
|
|
readonly buttons: number;
|
|
readonly clientX: number;
|
|
readonly clientY: number;
|
|
readonly ctrlKey: boolean;
|
|
readonly metaKey: boolean;
|
|
readonly movementX: number;
|
|
readonly movementY: number;
|
|
readonly offsetX: number;
|
|
readonly offsetY: number;
|
|
readonly region: string;
|
|
readonly relatedTarget: EventTarget | null;
|
|
readonly screenX: number;
|
|
readonly screenY: number;
|
|
readonly shiftKey: boolean;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param type Event type.
|
|
* @param [eventInit] Event init.
|
|
*/
|
|
constructor(type: string, eventInit?: IMouseEventInit | null);
|
|
}
|
|
//# sourceMappingURL=MouseEvent.d.ts.map
|