UNPKG

@squarecloud/api

Version:
15 lines (12 loc) 477 B
import { APIApplicationStatusNetwork } from '@squarecloud/api-types/v2'; interface ApplicationStatusUsage { /** How much memory the application is currently using */ ram: string; /** How much cpu the application is currently using */ cpu: string; /** How much storage the application is currently using */ storage: string; /** The application's network status */ network: APIApplicationStatusNetwork; } export type { ApplicationStatusUsage };