UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

24 lines (23 loc) 319 B
/** * Represents Knora's state of health. * * @category Model System */ export declare class HealthResponse { /** * Message */ message: string; /** * Name */ name: string; /** * Severity */ severity: string; /** * Status */ status: boolean; }