- ✅ 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
65 lines
1.1 KiB
TypeScript
65 lines
1.1 KiB
TypeScript
import DOMRectReadOnly from './DOMRectReadOnly.js';
|
|
import IDOMRectInit from './IDOMRectInit.js';
|
|
/**
|
|
* DOM Rect.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/DOMRect
|
|
*/
|
|
export default class DOMRect extends DOMRectReadOnly {
|
|
/**
|
|
* Sets x.
|
|
*
|
|
* @param value X.
|
|
*/
|
|
set x(value: number);
|
|
/**
|
|
* Returns x.
|
|
*
|
|
* @returns X.
|
|
*/
|
|
get x(): number;
|
|
/**
|
|
* Sets y.
|
|
*
|
|
* @param value Y.
|
|
*/
|
|
set y(value: number);
|
|
/**
|
|
* Returns y.
|
|
*
|
|
* @returns Y.
|
|
*/
|
|
get y(): number;
|
|
/**
|
|
* Sets width.
|
|
*
|
|
* @param value Width.
|
|
*/
|
|
set width(value: number);
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width(): number;
|
|
/**
|
|
* Sets height.
|
|
*
|
|
* @param value Height.
|
|
*/
|
|
set height(value: number);
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height(): number;
|
|
/**
|
|
* Returns a new DOMRect object.
|
|
*
|
|
* @param other
|
|
* @returns Cloned object.
|
|
*/
|
|
static fromRect(other: IDOMRectInit): DOMRect;
|
|
}
|
|
//# sourceMappingURL=DOMRect.d.ts.map
|