mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-26 10:21:55 +00:00
chore: Update the setupConfigExport
This commit is contained in:
@@ -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;
|
||||
|
||||
7
lib/mainFn/RunningMainRet.ts
Normal file
7
lib/mainFn/RunningMainRet.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Daemon } from "../types";
|
||||
import { ReadyProof } from "./ReadyProof";
|
||||
|
||||
export type RunningMainRet = {
|
||||
[ReadyProof]: never;
|
||||
daemon: Daemon;
|
||||
};
|
||||
Reference in New Issue
Block a user