RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/IServerInfo.ts

Summary

Maintainability
A
2 hrs
Test Coverage
export interface IServerInfo {
    build: {
        arch: string;
        cpus: number;
        date: string;
        freeMemory: number;
        nodeVersion: string;
        osRelease: string;
        platform: string;
        totalMemory: number;
    };
    commit: {
        author?: string;
        branch?: string;
        date?: string;
        hash?: string;
        subject?: string;
        tag?: string;
    };
    marketplaceApiVersion: string;
    version: string;
}