Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/windmill/node_modules/evt/lib/types/lib.dom.d.ts>CharacterData

Windmill deno client (separated from the main repo because most of the code is auto-generated from the openapi and not worth committing)
Go to Latest
interface CharacterData
import { type CharacterData } from "https://deno.land/x/windmill@v1.333.5/node_modules/evt/lib/types/lib.dom.d.ts";

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.

Properties

data: string
readonly
length: number

Methods

appendData(data: string): void
deleteData(offset: number, count: number): void
insertData(offset: number, data: string): void
replaceData(
offset: number,
count: number,
data: string,
): void
substringData(offset: number, count: number): string