MutationRecord.d.ts 499 B

123456789101112131415
  1. import type { IElement } from '@antv/g-lite';
  2. export 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. }
  15. //# sourceMappingURL=MutationRecord.d.ts.map