UNPKG

455 BTypeScriptView Raw
1import type { IElement } from './interfaces';
2export declare class MutationRecord {
3 type: MutationRecordType;
4 target: IElement;
5 static copy(original: MutationRecord): MutationRecord;
6 addedNodes: IElement[];
7 attributeName: string;
8 attributeNamespace: string;
9 nextSibling: IElement;
10 oldValue: string;
11 previousSibling: IElement;
12 removedNodes: IElement[];
13 constructor(type: MutationRecordType, target: IElement);
14}