This commit is contained in:
counterweight 2026-05-14 10:56:04 +02:00
parent bc92231240
commit b8225c639e
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
11904 changed files with 1472749 additions and 133 deletions

View file

@ -0,0 +1,10 @@
import { AbstractHandler } from '../../core/Handler.js';
import { MinHTMLAdaptor } from '../../adaptors/HTMLAdaptor.js';
import { HTMLDocument } from './HTMLDocument.js';
import { OptionList } from '../../util/Options.js';
export declare class HTMLHandler<N, T, D> extends AbstractHandler<N, T, D> {
adaptor: MinHTMLAdaptor<N, T, D>;
documentClass: typeof HTMLDocument;
handlesDocument(document: any): boolean;
create(document: any, options: OptionList): HTMLDocument<N, T, D>;
}