1import type { Benchmarks } from "./benchmark.js";
2
3/**
4 * File information + associated benchmarks.
5 */
6export interface FileMetadata {
7  file: File;
8  enabled: boolean;
9  container: Benchmarks;
10}
11