| 123456789101112131415 |
- import type { IElement } from '@antv/g-lite';
- export declare class MutationRecord {
- type: MutationRecordType;
- target: IElement;
- static copy(original: MutationRecord): MutationRecord;
- addedNodes: IElement[];
- attributeName: string;
- attributeNamespace: string;
- nextSibling: IElement;
- oldValue: string;
- previousSibling: IElement;
- removedNodes: IElement[];
- constructor(type: MutationRecordType, target: IElement);
- }
- //# sourceMappingURL=MutationRecord.d.ts.map
|