Files
start-os/sdk/base/lib/util/index.ts
Aiden McClelland 80cb2d9ba5 feat: add getOutboundGateway effect and simplify VersionGraph init/uninit
Add getOutboundGateway effect across core, container-runtime, and SDK
to let services query their effective outbound gateway with callback
support. Remove preInstall/uninstall hooks from VersionGraph as they
are no longer needed.
2026-02-20 13:26:45 -07:00

27 lines
969 B
TypeScript

/// Currently being used
export { addressHostToUrl } from './getServiceInterface'
export { getDefaultString } from './getDefaultString'
export * from './ip'
/// Not being used, but known to be browser compatible
export {
GetServiceInterface,
getServiceInterface,
filledAddress,
} from './getServiceInterface'
export { getServiceInterfaces } from './getServiceInterfaces'
export { once } from './once'
export { asError } from './asError'
export * as Patterns from './patterns'
export * from './typeHelpers'
export { GetOutboundGateway } from './GetOutboundGateway'
export { GetSystemSmtp } from './GetSystemSmtp'
export { Graph, Vertex } from './graph'
export { inMs } from './inMs'
export { splitCommand } from './splitCommand'
export { nullIfEmpty } from './nullIfEmpty'
export { deepMerge, partialDiff } from './deepMerge'
export { deepEqual } from './deepEqual'
export * as regexes from './regexes'
export { stringFromStdErrOut } from './stringFromStdErrOut'