chore: Update deps

This commit is contained in:
BluJ
2023-02-27 10:38:56 -07:00
parent eec99c06bf
commit 60eb3a8e4b
736 changed files with 133547 additions and 2 deletions

13
lib/types/healthUtil.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import { Effects, ResultType } from "./types.js";
export declare const checkWebUrl: (url: string) => (effects: Effects, duration: number) => Promise<ResultType<null | void>>;
export declare const runHealthScript: ({ command, args }: {
command: string;
args: string[];
}) => (effects: Effects, _duration: number) => Promise<ResultType<null | void>>;
export declare const guardDurationAboveMinimum: (input: {
duration: number;
minimumTime: number;
}) => {
"error-code": readonly [number, string];
} | null;
export declare const catchError: (effects: Effects) => (e: unknown) => import("./types.js").KnownError;