Type definition for the cluster status

interface Status {
    id: string;
    ip?: string;
    level?: string;
    local?: string;
    name: string;
    nodeid?: number;
    nodes?: number;
    online?: boolean;
    quorate?: boolean;
    type: type;
    version?: number;
}

Properties

id: string
ip?: string
level?: string
local?: string
name: string
nodeid?: number
nodes?: number
online?: boolean
quorate?: boolean
type: type
version?: number