Skip to content

@my-swu/simulator-client


@my-swu/simulator-client / StatsResponse

Interface: StatsResponse

Defined in: packages/ts-sdk/src/generated/types/stats-response.ts:3

Example:

ts
import type { StatsResponse } from '@my-swu/simulator-client'

const 
statsResponse
: StatsResponse = {
total
: 3000,
covered
: 1800,
tested
: 1600 }
console
.
log
(
statsResponse
)

Indexable

[k: string]: unknown

Properties

covered

Example:

ts
import type { StatsResponse } from '@my-swu/simulator-client'

const 
statsResponse
: StatsResponse = {
total
: 3000,
covered
: 1800,
tested
: 1600 }
const {
covered
:
coveredCardCount
} =
statsResponse
console
.
log
(
coveredCardCount
)

covered: number

Defined in: packages/ts-sdk/src/generated/types/stats-response.ts:4


tested

Example:

ts
import type { StatsResponse } from '@my-swu/simulator-client'

const 
statsResponse
: StatsResponse = {
total
: 3000,
covered
: 1800,
tested
: 1600 }
const {
tested
:
testedCardCount
} =
statsResponse
console
.
log
(
testedCardCount
)

tested: number

Defined in: packages/ts-sdk/src/generated/types/stats-response.ts:5


total

Example:

ts
import type { StatsResponse } from '@my-swu/simulator-client'

const 
statsResponse
: StatsResponse = {
total
: 3000,
covered
: 1800,
tested
: 1600 }
const {
total
:
totalCardCount
} =
statsResponse
console
.
log
(
totalCardCount
)

total: number

Defined in: packages/ts-sdk/src/generated/types/stats-response.ts:6

Released under the MIT License.