aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-devtools/heap/jsc.d.ts
blob: 28ae481273f61377cfcfb55838ab5e16589d44e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export namespace JSC {
  /**
   * @link https://github.com/WebKit/webkit/blob/main/Source/JavaScriptCore/heap/HeapSnapshotBuilder.h
   */
  export type HeapSnapshot = {
    version: 2;
    type: "Inspector";
    nodes: number[];
    nodeClassNames: string[];
    edges: number[];
    edgeTypes: string[];
    edgeNames: string[];
  };
}