server-status-check
Version:
query the server periodically to check whether it is up
30 lines • 948 B
TypeScript
export declare const mockViewDataWithErros: {
siteTitle: string;
secondsBeforeAutoRefresh: string;
statusInfo: {
statusName: string;
friendlyFullSentence: string;
dateLastChecked: string;
checkIntervalInMinutes: string;
checksSpreeCount: string;
aliveForYMDHMS: string;
errors: {
message: string;
}[];
};
};
export declare const mockViewDataWithEmptyErros: {
siteTitle: string;
secondsBeforeAutoRefresh: string;
statusInfo: {
errors: never[];
statusName: string;
friendlyFullSentence: string;
dateLastChecked: string;
checkIntervalInMinutes: string;
checksSpreeCount: string;
aliveForYMDHMS: string;
};
};
export declare const hydrationOutputGen: (data: typeof mockViewDataWithErros | typeof mockViewDataWithEmptyErros) => string;
//# sourceMappingURL=expectedHydrationOutput.d.ts.map