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

ViewMutationRecord

A ViewMutationRecord represents a DOM mutation or a selection change happens within the view. When the change is a selection change, the record will have a type property of "selection" (which doesn't occur for native mutation records).

type ViewMutationRecord = MutationRecord | {
type: "selection";
target: DOMNode;
}
;

§Type

§
MutationRecord | {
type: "selection";
target: DOMNode;
}
[src]