- ✅ 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
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import INodeFilter from './INodeFilter.js';
|
|
import Node from '../nodes/node/Node.js';
|
|
/**
|
|
* The NodeIterator object represents the nodes of a document subtree and a position within them.
|
|
*
|
|
* Reference:
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/NodeIterator
|
|
*/
|
|
export default class NodeIterator {
|
|
#private;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param root Root.
|
|
* @param [whatToShow] What to show.
|
|
* @param [filter] Filter.
|
|
*/
|
|
constructor(root: Node, whatToShow?: number, filter?: INodeFilter | null);
|
|
/**
|
|
* Returns root.
|
|
*
|
|
* @returns Root.
|
|
*/
|
|
get root(): Node | null;
|
|
/**
|
|
* Returns what to show.
|
|
*
|
|
* @returns What to show.
|
|
*/
|
|
get whatToShow(): number;
|
|
/**
|
|
* Returns filter.
|
|
*
|
|
* @returns Filter.
|
|
*/
|
|
get filter(): INodeFilter | null;
|
|
/**
|
|
* Moves the current Node to the next visible node in the document order.
|
|
*
|
|
* @returns Current node.
|
|
*/
|
|
nextNode(): Node | null;
|
|
/**
|
|
* Moves the current Node to the previous visible node in the document order, and returns the found node. It also moves the current node to this one. If no such node exists, or if it is before that the root node defined at the object construction, returns null and the current node is not changed.
|
|
*
|
|
* @returns Current node.
|
|
*/
|
|
previousNode(): Node | null;
|
|
}
|
|
//# sourceMappingURL=NodeIterator.d.ts.map
|