- ✅ 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
67 lines
1.7 KiB
TypeScript
67 lines
1.7 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.js';
|
|
/**
|
|
* SVGFESpotLightElement.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
|
|
*/
|
|
export default class SVGFESpotLightElement extends SVGElement {
|
|
[PropertySymbol.x]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.y]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.z]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.pointsAtX]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.pointsAtY]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.pointsAtZ]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.specularExponent]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.limitingConeAngle]: SVGAnimatedNumber | null;
|
|
/**
|
|
* Returns x.
|
|
*
|
|
* @returns X.
|
|
*/
|
|
get x(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns y.
|
|
*
|
|
* @returns Y.
|
|
*/
|
|
get y(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns z.
|
|
*
|
|
* @returns Z.
|
|
*/
|
|
get z(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns pointsAtX.
|
|
*
|
|
* @returns PointsAtX.
|
|
*/
|
|
get pointsAtX(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns pointsAtY.
|
|
*
|
|
* @returns PointsAtY.
|
|
*/
|
|
get pointsAtY(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns pointsAtZ.
|
|
*
|
|
* @returns PointsAtZ.
|
|
*/
|
|
get pointsAtZ(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns specularExponent.
|
|
*
|
|
* @returns SpecularExponent.
|
|
*/
|
|
get specularExponent(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns limitingConeAngle.
|
|
*
|
|
* @returns LimitingConeAngle.
|
|
*/
|
|
get limitingConeAngle(): SVGAnimatedNumber;
|
|
}
|
|
//# sourceMappingURL=SVGFESpotLightElement.d.ts.map
|