mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* use pid+frameId Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * use correct process id Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
9 lines
187 B
TypeScript
9 lines
187 B
TypeScript
import { observable } from "mobx";
|
|
|
|
export type ClusterFrameInfo = {
|
|
frameId: number;
|
|
processId: number
|
|
};
|
|
|
|
export const clusterFrameMap = observable.map<string, ClusterFrameInfo>();
|