import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/index.ts";
const { CharacterData } = dom;
The CharacterData abstract interface represents a Node object that contains characters. This is an abstract interface, meaning there aren't any object of type CharacterData: it is implemented by other interfaces, like Text, Comment, or ProcessingInstruction which aren't abstract.