Page MenuHomeWickedGov Phorge

MutationRecord.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

MutationRecord.php

<?php
// AUTOMATICALLY GENERATED. DO NOT EDIT.
// Use `composer build` to regenerate.
namespace Wikimedia\IDLeDOM;
/**
* MutationRecord
*
* @see https://dom.spec.whatwg.org/#interface-mutationrecord
*
* @property string $type
* @property Node $target
* @property NodeList $addedNodes
* @property NodeList $removedNodes
* @property Node|null $previousSibling
* @property Node|null $nextSibling
* @property ?string $attributeName
* @property ?string $attributeNamespace
* @property ?string $oldValue
* @phan-forbid-undeclared-magic-properties
*/
interface MutationRecord {
/**
* @return string
*/
public function getType(): string;
/**
* @return Node
*/
public function getTarget();
/**
* @return NodeList
*/
public function getAddedNodes();
/**
* @return NodeList
*/
public function getRemovedNodes();
/**
* @return Node|null
*/
public function getPreviousSibling();
/**
* @return Node|null
*/
public function getNextSibling();
/**
* @return ?string
*/
public function getAttributeName(): ?string;
/**
* @return ?string
*/
public function getAttributeNamespace(): ?string;
/**
* @return ?string
*/
public function getOldValue(): ?string;
}

File Metadata

Mime Type
text/x-php
Expires
Aug 18 2026, 11:42 (5 w, 1 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a9/fc/dfe8f2ba4db78027d3b59236925f
Default Alt Text
MutationRecord.php (1 KB)

Event Timeline