- ✅ 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
78 lines
1.8 KiB
TypeScript
78 lines
1.8 KiB
TypeScript
import Element from '../element/Element.js';
|
|
import Node from '../node/Node.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import NodeTypeEnum from '../node/NodeTypeEnum.js';
|
|
/**
|
|
* Attribute node interface.
|
|
*
|
|
* Reference: https://developer.mozilla.org/en-US/docs/Web/API/Attr.
|
|
*/
|
|
export default class Attr extends Node implements Attr {
|
|
cloneNode: (deep?: boolean) => Attr;
|
|
[PropertySymbol.nodeType]: NodeTypeEnum;
|
|
[PropertySymbol.namespaceURI]: string | null;
|
|
[PropertySymbol.name]: string | null;
|
|
[PropertySymbol.localName]: string | null;
|
|
[PropertySymbol.prefix]: string | null;
|
|
[PropertySymbol.value]: string | null;
|
|
[PropertySymbol.specified]: boolean;
|
|
[PropertySymbol.ownerElement]: Element | null;
|
|
/**
|
|
* Returns specified.
|
|
*
|
|
* @deprecated
|
|
* @returns Specified.
|
|
*/
|
|
get specified(): boolean;
|
|
/**
|
|
* Returns owner element.
|
|
*
|
|
* @returns Owner element.
|
|
*/
|
|
get ownerElement(): Element | null;
|
|
/**
|
|
* Returns value.
|
|
*
|
|
* @returns Value.
|
|
*/
|
|
get value(): string | null;
|
|
/**
|
|
* Sets value.
|
|
*
|
|
* @param value Value.
|
|
*/
|
|
set value(value: string);
|
|
/**
|
|
* Returns name.
|
|
*
|
|
* @returns Name.
|
|
*/
|
|
get name(): string;
|
|
/**
|
|
* Returns local name.
|
|
*
|
|
* @returns Local name.
|
|
*/
|
|
get localName(): string;
|
|
/**
|
|
* Returns prefix.
|
|
*
|
|
* @returns Prefix.
|
|
*/
|
|
get prefix(): string | null;
|
|
/**
|
|
* @override
|
|
*/
|
|
get textContent(): string;
|
|
/**
|
|
* Returns namespace URI.
|
|
*
|
|
* @returns Namespace URI.
|
|
*/
|
|
get namespaceURI(): string | null;
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.cloneNode](deep?: boolean): Attr;
|
|
}
|
|
//# sourceMappingURL=Attr.d.ts.map
|