- ✅ 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
26 lines
715 B
TypeScript
26 lines
715 B
TypeScript
import BrowserWindow from '../window/BrowserWindow.js';
|
|
import Event from './Event.js';
|
|
import IUIEventInit from './IUIEventInit.js';
|
|
/**
|
|
*
|
|
*/
|
|
export default class UIEvent extends Event {
|
|
static NONE: number;
|
|
static CAPTURING_PHASE: number;
|
|
static AT_TARGET: number;
|
|
static BUBBLING_PHASE: number;
|
|
readonly detail: number;
|
|
readonly layerX: number;
|
|
readonly layerY: number;
|
|
readonly pageX: number;
|
|
readonly pageY: number;
|
|
readonly view: BrowserWindow | null;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param type Event type.
|
|
* @param [eventInit] Event init.
|
|
*/
|
|
constructor(type: string, eventInit?: IUIEventInit | null);
|
|
}
|
|
//# sourceMappingURL=UIEvent.d.ts.map
|