mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 22:39:46 +00:00
Run prettier across sdk/base and sdk/package to apply the standardized quote style (single quotes matching web).
12 lines
424 B
TypeScript
12 lines
424 B
TypeScript
import { runHealthScript } from './runHealthScript'
|
|
export { checkPortListening } from './checkPortListening'
|
|
export { HealthCheckResult } from './HealthCheckResult'
|
|
export { checkWebUrl } from './checkWebUrl'
|
|
|
|
export function timeoutPromise(ms: number, { message = 'Timed out' } = {}) {
|
|
return new Promise<never>((resolve, reject) =>
|
|
setTimeout(() => reject(new Error(message)), ms),
|
|
)
|
|
}
|
|
export { runHealthScript }
|