Files
klz-cables.com/.pnpm-store/v10/files/88/a607f3e286c1456b4bd6fc70ca55d19cad9b315ab1c86a4526d94f808374b63e581e5c14f25f7efa88bb3794f0a9976de817cca018fcf62ef8710958cffbba
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
553 B
Plaintext

import { RestCommand } from "../../types.cjs";
//#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.cts.map