mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-31 04:33:40 +00:00
chore: Update the main types
This commit is contained in:
@@ -2,6 +2,7 @@ export * as configTypes from "./config/configTypes"
|
|||||||
import { InputSpec } from "./config/configTypes"
|
import { InputSpec } from "./config/configTypes"
|
||||||
import { DependenciesReceipt } from "./config/setupConfig"
|
import { DependenciesReceipt } from "./config/setupConfig"
|
||||||
import { PortOptions } from "./interfaces/Host"
|
import { PortOptions } from "./interfaces/Host"
|
||||||
|
import { Daemons } from "./mainFn/Daemons"
|
||||||
import { Overlay } from "./util/Overlay"
|
import { Overlay } from "./util/Overlay"
|
||||||
import { UrlString } from "./util/getNetworkInterface"
|
import { UrlString } from "./util/getNetworkInterface"
|
||||||
import { NetworkInterfaceType, Signals } from "./util/utils"
|
import { NetworkInterfaceType, Signals } from "./util/utils"
|
||||||
@@ -59,8 +60,8 @@ export namespace ExpectedExports {
|
|||||||
*/
|
*/
|
||||||
export type main = (options: {
|
export type main = (options: {
|
||||||
effects: Effects
|
effects: Effects
|
||||||
started(onTerm: () => void): null
|
started(onTerm: () => Promise<void>): Promise<void>
|
||||||
}) => Promise<unknown>
|
}) => Promise<Daemons<any, any>>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* After a shutdown, if we wanted to do any operations to clean up things, like
|
* After a shutdown, if we wanted to do any operations to clean up things, like
|
||||||
|
|||||||
Reference in New Issue
Block a user