| 55 | export type BenchmarkInfo = CPUBenchmarkInfo | MemBenchmarkInfo | StartupMainBenchmarkInfo | StartupBenchmarkInfo | SizeBenchmarkInfo | SizeMainBenchmarkInfo; |
| 56 | |
| 57 | export interface BenchmarkImpl { |
| 58 | benchmarkInfo: BenchmarkInfo; |
| 59 | type: BenchmarkType; |
| 60 | } |
| 61 | |
| 62 | export interface CPUBenchmarkResult { |
| 63 | total: number; |
nothing calls this directly
no outgoing calls
no test coverage detected