@my-swu/simulator-client / HealthResponse
Interface: HealthResponse
Defined in: packages/ts-sdk/src/generated/types/health-response.ts:3
Example:
ts
import type { HealthResponse } from '@my-swu/simulator-client'
const healthResponse: HealthResponse = { status: 'ok' }
console.log(healthResponse)Indexable
[
k:string]:unknown
Properties
status
Example:
ts
import type { HealthResponse } from '@my-swu/simulator-client'
const healthResponse: HealthResponse = { status: 'ok' }
const { status: healthStatus } = healthResponse
console.log(healthStatus)status:
string
Defined in: packages/ts-sdk/src/generated/types/health-response.ts:4
