import type { BenchmarkRow } from './BenchmarkRow'; /** * GET /v1/benchmarks/projects/{project_type} response. */ export type BenchmarkProjectOut = { project_type: string; rows: Array; /** * Total rows matching the filters (across all pages). */ total: number; /** * Page size applied to this response. */ limit: number; /** * Skip-count applied to this response. */ offset: number; }; //# sourceMappingURL=BenchmarkProjectOut.d.ts.map