//#region src/modules/health/types.d.ts interface FileSystemUsage { /** Filesystem name */ name: string; /** Total space */ total: number; /** Used space */ used: number; /** Available space */ available: number; } interface ApiService { service: string; hostname: string; version?: string; filesystems?: FileSystemUsage[]; createdAt: Date; updatedAt: Date; } interface ApiStatus { /** Current service */ current: string; /** Current version */ version: string; /** Services connected to current */ services: ApiService[]; } //#endregion //#region src/modules/health/methods.d.ts /** * Get status of service * * @returns The current service */ declare function getStatus(): Promise; //#endregion export { type ApiService, type ApiStatus, type FileSystemUsage, getStatus }; //# sourceMappingURL=health.d.ts.map