- ✅ 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
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.js';
|
|
import DOMRect from '../../dom/DOMRect.js';
|
|
import DOMMatrix from '../../dom/dom-matrix/DOMMatrix.js';
|
|
import SVGStringList from '../../svg/SVGStringList.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import SVGAnimatedTransformList from '../../svg/SVGAnimatedTransformList.js';
|
|
import Event from '../../event/Event.js';
|
|
/**
|
|
* SVG Graphics Element.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGGraphicsElement
|
|
*/
|
|
export default class SVGGraphicsElement extends SVGElement {
|
|
[PropertySymbol.requiredExtensions]: SVGStringList | null;
|
|
[PropertySymbol.systemLanguage]: SVGStringList | null;
|
|
[PropertySymbol.transform]: SVGAnimatedTransformList | null;
|
|
get oncopy(): ((event: Event) => void) | null;
|
|
set oncopy(value: ((event: Event) => void) | null);
|
|
get oncut(): ((event: Event) => void) | null;
|
|
set oncut(value: ((event: Event) => void) | null);
|
|
get onpaste(): ((event: Event) => void) | null;
|
|
set onpaste(value: ((event: Event) => void) | null);
|
|
/**
|
|
* Returns required extensions.
|
|
*
|
|
* @returns Required extensions.
|
|
*/
|
|
get requiredExtensions(): SVGStringList;
|
|
/**
|
|
* Returns system language.
|
|
*
|
|
* @returns System language.
|
|
*/
|
|
get systemLanguage(): SVGStringList;
|
|
/**
|
|
* Returns transform.
|
|
*
|
|
* @returns Transform.
|
|
*/
|
|
get transform(): SVGAnimatedTransformList;
|
|
/**
|
|
* Returns DOM rect.
|
|
*
|
|
* @returns DOM rect.
|
|
*/
|
|
getBBox(): DOMRect;
|
|
/**
|
|
* Returns CTM.
|
|
*
|
|
* @returns CTM.
|
|
*/
|
|
getCTM(): DOMMatrix;
|
|
/**
|
|
* Returns screen CTM.
|
|
*
|
|
* @returns Screen CTM.
|
|
*/
|
|
getScreenCTM(): DOMMatrix;
|
|
}
|
|
//# sourceMappingURL=SVGGraphicsElement.d.ts.map
|