mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* fix mac build * wip * chore: Update the effects to get rid of bad pattern * chore: Some small changes --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
9 lines
296 B
TypeScript
9 lines
296 B
TypeScript
import { types as T } from "@start9labs/start-sdk"
|
|
|
|
import { CallbackHolder } from "../Models/CallbackHolder"
|
|
import { Effects } from "../Models/Effects"
|
|
export type HostSystem = Effects
|
|
export type GetHostSystem = (
|
|
callbackHolder: CallbackHolder,
|
|
) => (procedureId: null | string) => Effects
|