/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ 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; };