uni-ticket-system/node_modules/licia/HeapSnapshot.d.ts
2023-12-05 10:11:10 +08:00

10 lines
178 B
TypeScript

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