- ✅ 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
68 lines
2.1 KiB
TypeScript
68 lines
2.1 KiB
TypeScript
import SVGElement from '../svg-element/SVGElement.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import SVGAnimatedNumber from '../../svg/SVGAnimatedNumber.js';
|
|
import SVGAnimatedEnumeration from '../../svg/SVGAnimatedEnumeration.js';
|
|
import SVGAnimatedNumberList from '../../svg/SVGAnimatedNumberList.js';
|
|
/**
|
|
* SVGComponentTransferFunctionElement.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/SVGComponentTransferFunctionElement
|
|
*/
|
|
export default class SVGComponentTransferFunctionElement extends SVGElement {
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_UNKNOWN: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_IDENTITY: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_TABLE: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_DISCRETE: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_LINEAR: number;
|
|
static SVG_FECOMPONENTTRANSFER_TYPE_GAMMA: number;
|
|
[PropertySymbol.type]: SVGAnimatedEnumeration | null;
|
|
[PropertySymbol.tableValues]: SVGAnimatedNumberList | null;
|
|
[PropertySymbol.slope]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.intercept]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.amplitude]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.exponent]: SVGAnimatedNumber | null;
|
|
[PropertySymbol.offset]: SVGAnimatedNumber | null;
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): SVGAnimatedEnumeration;
|
|
/**
|
|
* Returns table values.
|
|
*
|
|
* @returns Table values.
|
|
*/
|
|
get tableValues(): SVGAnimatedNumberList;
|
|
/**
|
|
* Returns slope.
|
|
*
|
|
* @returns Slope.
|
|
*/
|
|
get slope(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns intercept.
|
|
*
|
|
* @returns Intercept.
|
|
*/
|
|
get intercept(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns amplitude.
|
|
*
|
|
* @returns Amplitude.
|
|
*/
|
|
get amplitude(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns exponent.
|
|
*
|
|
* @returns Exponent.
|
|
*/
|
|
get exponent(): SVGAnimatedNumber;
|
|
/**
|
|
* Returns offset.
|
|
*
|
|
* @returns Offset.
|
|
*/
|
|
get offset(): SVGAnimatedNumber;
|
|
}
|
|
//# sourceMappingURL=SVGComponentTransferFunctionElement.d.ts.map
|