- ✅ 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
50 lines
1.3 KiB
TypeScript
50 lines
1.3 KiB
TypeScript
import * as PropertySymbol from '../PropertySymbol.js';
|
|
import BrowserWindow from '../window/BrowserWindow.js';
|
|
/**
|
|
* SVG Animated Integer.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimatedInteger
|
|
*/
|
|
export default class SVGAnimatedInteger {
|
|
[PropertySymbol.window]: BrowserWindow;
|
|
[PropertySymbol.getAttribute]: () => string | null;
|
|
[PropertySymbol.setAttribute]: (value: string) => void;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param illegalConstructorSymbol Illegal constructor symbol.
|
|
* @param window Window.
|
|
* @param options Options.
|
|
* @param options.getAttribute Get attribute.
|
|
* @param options.setAttribute Set attribute.
|
|
*/
|
|
constructor(illegalConstructorSymbol: symbol, window: BrowserWindow, options: {
|
|
getAttribute: () => string | null;
|
|
setAttribute: (value: string) => void;
|
|
});
|
|
/**
|
|
* Returns animated value.
|
|
*
|
|
* @returns Animated value.
|
|
*/
|
|
get animVal(): number;
|
|
/**
|
|
* Returns animated value.
|
|
*
|
|
* @param value Animated value.
|
|
*/
|
|
set animVal(_value: number);
|
|
/**
|
|
* Returns base value.
|
|
*
|
|
* @returns Base value.
|
|
*/
|
|
get baseVal(): number;
|
|
/**
|
|
* Sets base value.
|
|
*
|
|
* @param value Base value.
|
|
*/
|
|
set baseVal(value: number);
|
|
}
|
|
//# sourceMappingURL=SVGAnimatedInteger.d.ts.map
|