/** * This file was auto-generated by Fern from our API Definition. */ /** * * `QUEUED` - Queued * * `RUNNING` - Running * * `COMPLETE` - Complete * * `FAILED` - Failed * * `CANCELLED` - Cancelled */ export type TestSuiteRunState = "QUEUED" | "RUNNING" | "COMPLETE" | "FAILED" | "CANCELLED"; export declare const TestSuiteRunState: { readonly Queued: "QUEUED"; readonly Running: "RUNNING"; readonly Complete: "COMPLETE"; readonly Failed: "FAILED"; readonly Cancelled: "CANCELLED"; };