Files
klz-cables.com/.pnpm-store/v10/files/47/49513fde1730130a1dcaf77e289944bb6cfd3275c6a15136b32c3925eed63339ae7600beda6fa32c0190457db652f56f6b56a4b1b1821bfd1329796797a2d1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

19 lines
551 B
Plaintext

import { RestCommand } from "../../types.js";
//#region src/rest/commands/server/health.d.ts
type ServerHealthOutput = {
status: 'ok' | 'warn' | 'error';
releaseId?: string;
serviceId?: string;
checks?: {
[name: string]: Record<string, any>[];
};
};
/**
* Get the current health status of the server.
* @returns The current health status of the server.
*/
declare const serverHealth: <Schema>() => RestCommand<ServerHealthOutput, Schema>;
//#endregion
export { ServerHealthOutput, serverHealth };
//# sourceMappingURL=health.d.ts.map