HeapSnapshot.d.ts 178 B

123456789
  1. import LinkedList = require('./LinkedList');
  2. declare class HeapSnapshot {
  3. nodes: LinkedList;
  4. edges: LinkedList;
  5. constructor(profile: any);
  6. }
  7. export = HeapSnapshot;