Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ElementHandlers

import type { ElementHandlers } from "https://raw.githubusercontent.com/worker-tools/html-rewriter/master/index.ts";
interface ElementHandlers {
comments?(comment: Comment): void | Promise<void>;
element?(element: Element): void | Promise<void>;
text?(text: TextChunk): void | Promise<void>;
}

§Methods

§
comments?(comment: Comment): void | Promise<void>
[src]
§
element?(element: Element): void | Promise<void>
[src]
§
text?(text: TextChunk): void | Promise<void>
[src]