re-uploading work

This commit is contained in:
2026-02-04 17:46:30 -06:00
commit 3b14c65998
1388 changed files with 381262 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { TestCaseResult } from './TestCaseResult';
/**
* Test suite result (collection of test cases)
*/
export type TestSuiteResult = {
durationMs: number;
failed: number;
name: string;
passed: number;
runnerType: string;
skipped: number;
testCases: Array<TestCaseResult>;
total: number;
};