chore: Update the setupConfigExport

This commit is contained in:
BluJ
2023-04-11 15:35:39 -06:00
parent 0e0d62f9c4
commit d8d36be5e2
7 changed files with 502 additions and 48 deletions

View File

@@ -13,8 +13,8 @@ type Daemon<
ready: {
display: null | {
name: "Websocket Live";
message: "The websocket is live";
name: string;
message: string;
};
fn: () => Promise<CheckResult> | CheckResult;
trigger?: Trigger;

View File

@@ -0,0 +1,7 @@
import { Daemon } from "../types";
import { ReadyProof } from "./ReadyProof";
export type RunningMainRet = {
[ReadyProof]: never;
daemon: Daemon;
};