codigo0/node_modules/happy-dom/lib/nodes/element/NamedNodeMap.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

113 lines
2.7 KiB
TypeScript

import * as PropertySymbol from '../../PropertySymbol.js';
import Attr from '../attr/Attr.js';
import Element from './Element.js';
/**
* Named Node Map.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/NamedNodeMap
*/
export default class NamedNodeMap {
[index: number]: Attr;
[PropertySymbol.itemsByNamespaceURI]: Map<string, Attr>;
[PropertySymbol.itemsByName]: Map<string, Attr[]>;
[PropertySymbol.items]: Map<string, Attr>;
[PropertySymbol.ownerElement]: Element;
/**
* Constructor.
*
* @param ownerElement Owner element.
*/
constructor(ownerElement: Element);
/**
* Returns length.
*
* @returns Length.
*/
get length(): number;
/**
* Returns string.
*
* @returns string.
*/
get [Symbol.toStringTag](): string;
/**
* Returns string.
*
* @returns string.
*/
toString(): string;
/**
* Iterator.
*
* @returns Iterator.
*/
[Symbol.iterator](): ArrayIterator<Attr>;
/**
* Returns item by index.
*
* @param index Index.
*/
item(index: number): Attr | null;
/**
* Returns named item.
*
* @param name Name.
* @returns Item.
*/
getNamedItem(name: string): Attr | null;
/**
* Returns item by name and namespace.
*
* @param namespace Namespace.
* @param localName Local name of the attribute.
* @returns Item.
*/
getNamedItemNS(namespace: string | null, localName: string): Attr | null;
/**
* Sets named item.
*
* @param item Item.
* @returns Replaced item.
*/
setNamedItem(item: Attr): Attr | null;
/**
* Adds a new namespaced item.
*
* @alias setNamedItem()
* @param item Item.
* @returns Replaced item.
*/
setNamedItemNS(item: Attr): Attr | null;
/**
* Removes an item.
*
* @throws DOMException
* @param name Name of item.
* @returns Removed item.
*/
removeNamedItem(name: string): Attr;
/**
* Removes a namespaced item.
*
* @param namespace Namespace.
* @param localName Local name of the item.
* @returns Removed item.
*/
removeNamedItemNS(namespace: string | null, localName: string): Attr | null;
/**
* Sets named item.
*
* @param item Item.
* @param [ignoreListeners] Ignore listeners.
* @returns Replaced item.
*/
[PropertySymbol.setNamedItem](item: Attr, ignoreListeners?: boolean): Attr | null;
/**
* Removes named item.
*
* @param item Item.
* @param ignoreListeners
*/
[PropertySymbol.removeNamedItem](item: Attr, ignoreListeners?: boolean): void;
}
//# sourceMappingURL=NamedNodeMap.d.ts.map