✨ Features: - App iOS completa para leer manga sin publicidad - Scraper con WKWebView para manhwaweb.com - Sistema de descargas offline - Lector con zoom y navegación - Favoritos y progreso de lectura - Compatible con iOS 15+ y Sideloadly/3uTools 📦 Contenido: - Backend Node.js con Puppeteer (opcional) - App iOS con SwiftUI - Scraper de capítulos e imágenes - Sistema de almacenamiento local - Testing completo - Documentación exhaustiva 🧪 Prueba: Capítulo 789 de One Piece descargado exitosamente - 21 páginas descargadas - 4.68 MB total - URLs verificadas y funcionales 🎉 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
764 B
TypeScript
12 lines
764 B
TypeScript
import type { CompiledQuery, InternalOptions } from "../types.js";
|
|
/**
|
|
* Some selectors such as `:contains` and (non-relative) `:has` will only be
|
|
* able to match elements if their parents match the selector (as they contain
|
|
* a subset of the elements that the parent contains).
|
|
*
|
|
* This function wraps the given `matches` function in a function that caches
|
|
* the results of the parent elements, so that the `matches` function only
|
|
* needs to be called once for each subtree.
|
|
*/
|
|
export declare function cacheParentResults<Node, ElementNode extends Node>(next: CompiledQuery<ElementNode>, { adapter, cacheResults }: InternalOptions<Node, ElementNode>, matches: (elem: ElementNode) => boolean): CompiledQuery<ElementNode>;
|
|
//# sourceMappingURL=cache.d.ts.map
|