Files
2026-08-11 17:41:36 +08:00

10 lines
178 B
TypeScript

import LinkedList = require('./LinkedList');
declare class HeapSnapshot {
nodes: LinkedList;
edges: LinkedList;
constructor(profile: any);
}
export = HeapSnapshot;