(
options: RequestInit = {},
)
| 29 | } |
| 30 | |
| 31 | export async function fetchSimulatorCreateOptions( |
| 32 | options: RequestInit = {}, |
| 33 | ): Promise<SimulatorCreateOptionsResponse> { |
| 34 | return apiRequest<SimulatorCreateOptionsResponse>( |
| 35 | "/api/simulators/create-options", |
| 36 | options, |
| 37 | ); |
| 38 | } |
| 39 | |
| 40 | export async function createSimulator( |
| 41 | payload: CreateSimulatorRequest, |
no test coverage detected