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>MutationEvent

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 MutationEvent
implements Event
import { type MutationEvent } from "https://deno.land/x/windmill@v1.345.2/node_modules/evt/lib/types/lib.dom.d.ts";

Provides event properties that are specific to modifications to the Document Object Model (DOM) hierarchy and nodes.

Properties

readonly
attrChange: number
readonly
attrName: string
readonly
newValue: string
readonly
prevValue: string
readonly
relatedNode: Node
readonly
ADDITION: number
readonly
MODIFICATION: number
readonly
REMOVAL: number

Methods

initMutationEvent(
typeArg: string,
canBubbleArg: boolean,
cancelableArg: boolean,
relatedNodeArg: Node,
prevValueArg: string,
newValueArg: string,
attrNameArg: string,
attrChangeArg: number,
): void