codigo0/node_modules/happy-dom/lib/nodes/svg-fe-blend-element/SVGFEBlendElement.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

79 lines
2.4 KiB
TypeScript

import SVGElement from '../svg-element/SVGElement.js';
import * as PropertySymbol from '../../PropertySymbol.js';
import SVGAnimatedLength from '../../svg/SVGAnimatedLength.js';
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.js';
import SVGAnimatedString from '../../svg/SVGAnimatedString.js';
/**
* SVG FE Blend Element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
*/
export default class SVGFEBlendElement extends SVGElement {
static SVG_FEBLEND_MODE_UNKNOWN: number;
static SVG_FEBLEND_MODE_NORMAL: number;
static SVG_FEBLEND_MODE_MULTIPLY: number;
static SVG_FEBLEND_MODE_SCREEN: number;
static SVG_FEBLEND_MODE_DARKEN: number;
static SVG_FEBLEND_MODE_LIGHTEN: number;
static SVG_FEBLEND_MODE_OVERLAY: number;
static SVG_FEBLEND_MODE_COLOR_DODGE: number;
static SVG_FEBLEND_MODE_COLOR_BURN: number;
static SVG_FEBLEND_MODE_HARD_LIGHT: number;
static SVG_FEBLEND_MODE_SOFT_LIGHT: number;
static SVG_FEBLEND_MODE_DIFFERENCE: number;
static SVG_FEBLEND_MODE_EXCLUSION: number;
static SVG_FEBLEND_MODE_HUE: number;
static SVG_FEBLEND_MODE_SATURATION: number;
static SVG_FEBLEND_MODE_COLOR: number;
static SVG_FEBLEND_MODE_LUMINOSITY: number;
[PropertySymbol.height]: SVGAnimatedLength | null;
[PropertySymbol.in1]: SVGAnimatedString | null;
[PropertySymbol.in2]: SVGAnimatedString | null;
[PropertySymbol.mode]: SVGAnimatedEnumeration | null;
[PropertySymbol.x]: SVGAnimatedLength | null;
[PropertySymbol.y]: SVGAnimatedLength | null;
[PropertySymbol.width]: SVGAnimatedLength | null;
/**
* Returns height.
*
* @returns Height.
*/
get height(): SVGAnimatedLength;
/**
* Returns in1.
*
* @returns In1.
*/
get in1(): SVGAnimatedString;
/**
* Returns in2.
*
* @returns In2.
*/
get in2(): SVGAnimatedString;
/**
* Returns mode.
*
* @returns Mode.
*/
get mode(): SVGAnimatedEnumeration;
/**
* Returns width.
*
* @returns Width.
*/
get width(): SVGAnimatedLength;
/**
* Returns x position.
*
* @returns X position.
*/
get x(): SVGAnimatedLength;
/**
* Returns y position.
*
* @returns Y position.
*/
get y(): SVGAnimatedLength;
}
//# sourceMappingURL=SVGFEBlendElement.d.ts.map