| 13 | } |
| 14 | |
| 15 | export interface MemoryBenchmarkResult { |
| 16 | kind: BenchmarkKind.Memory; |
| 17 | categories: Record<MemoryBenchmarkCategory, number>; |
| 18 | benchmarkName: string; |
| 19 | } |
| 20 | |
| 21 | export function isMemoryBenchmarkResult(result: BenchmarkResult): result is MemoryBenchmarkResult { |
| 22 | return result.kind === BenchmarkKind.Memory; |
nothing calls this directly
no outgoing calls
no test coverage detected