UNPKG

nmkr-studio-api

Version:

Typesafe API Client to work with the NMKR Studio V2 API

15 lines (14 loc) 495 B
import type { BackgroundTaskEnums } from './BackgroundTaskEnums'; export type ServerStateClass = { serverId?: number; serverName?: string | null; serverState?: string | null; lastLifeSign?: string; actualTask?: BackgroundTaskEnums; cardanoNodeVersion?: string | null; serverVersion?: string | null; cardanoSlot?: string | null; cardanoEpoch?: string | null; cardanoSyncprogress?: string | null; backgroundTasks?: Array<BackgroundTaskEnums> | null; };