mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-04-04 22:39:47 +00:00
chore: Update deps
This commit is contained in:
13
lib/types/healthUtil.d.ts
vendored
Normal file
13
lib/types/healthUtil.d.ts
vendored
Normal 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;
|
||||
Reference in New Issue
Block a user