codigo0/node_modules/happy-dom/lib/nodes/svg-line-element/SVGLineElement.d.ts
planetazuzu 5d7a6500fe refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades
-  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
2026-01-25 21:09:47 +01:00

39 lines
1 KiB
TypeScript

import SVGGeometryElement from '../svg-geometry-element/SVGGeometryElement.js';
import * as PropertySymbol from '../../PropertySymbol.js';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.js';
/**
* SVG Line Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
*/
export default class SVGLineElement extends SVGGeometryElement {
[PropertySymbol.x1]: SVGAnimatedLength | null;
[PropertySymbol.y1]: SVGAnimatedLength | null;
[PropertySymbol.x2]: SVGAnimatedLength | null;
[PropertySymbol.y2]: SVGAnimatedLength | null;
/**
* Returns x1 position.
*
* @returns X1 position.
*/
get x1(): SVGAnimatedLength;
/**
* Returns y1 position.
*
* @returns Y1 position.
*/
get y1(): SVGAnimatedLength;
/**
* Returns x2 position.
*
* @returns X2 position.
*/
get x2(): SVGAnimatedLength;
/**
* Returns y2 position.
*
* @returns Y2 position.
*/
get y2(): SVGAnimatedLength;
}
//# sourceMappingURL=SVGLineElement.d.ts.map