import type { Node } from './Node'; /** * @link https://developer.mozilla.org/en-US/docs/Web/API/MutationRecord */ export interface MutationRecord { type: MutationRecordType; target: Node; addedNodes?: Node[]; attributeName?: string; attributeNamespace?: string; nextSibling?: Node; oldValue?: string; previousSibling?: Node; removedNodes?: Node[]; _boundsChangeData?: { affectChildren: boolean; }; } //# sourceMappingURL=MutationObserver.d.ts.map