Files
yusheng-h5/uni_modules/UniDevTools/node_modules/licia/HeapSnapshot.d.ts
2025-08-11 11:06:07 +08:00

10 lines
178 B
TypeScript

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