uni-ticket-system/node_modules/licia/HeapSnapshot.d.ts

10 lines
178 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import LinkedList = require('./LinkedList');
declare class HeapSnapshot {
nodes: LinkedList;
edges: LinkedList;
constructor(profile: any);
}
export = HeapSnapshot;