| 1 | export interface SessionData { |
| 2 | session: { |
| 3 | start_time: number; |
| 4 | duration: number; |
| 5 | min_interval: number; |
| 6 | max_interval: number; |
| 7 | sample_count: number; |
| 8 | start_call_stack: string[], |
| 9 | target_description: string; |
| 10 | cpu_time: number; |
| 11 | sys_path: string; |
| 12 | sys_prefixes: string[]; |
| 13 | }; |
| 14 | frame_tree: FrameData|null; |
| 15 | } |
| 16 | |
| 17 | export interface FrameData { |
| 18 | identifier: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…