mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-18 05:20:48 +00:00
22 lines
628 B
TypeScript
22 lines
628 B
TypeScript
// Shared process/runtime utilities for plugins. This is the public boundary for
|
|
// logger wiring, runtime env shims, and global verbose console helpers.
|
|
|
|
export type { RuntimeEnv } from "../runtime.js";
|
|
export { createNonExitingRuntime, defaultRuntime } from "../runtime.js";
|
|
export {
|
|
danger,
|
|
info,
|
|
isVerbose,
|
|
isYes,
|
|
logVerbose,
|
|
logVerboseConsole,
|
|
setVerbose,
|
|
setYes,
|
|
shouldLogVerbose,
|
|
success,
|
|
warn,
|
|
} from "../globals.js";
|
|
export * from "../logging.js";
|
|
export { waitForAbortSignal } from "../infra/abort-signal.js";
|
|
export { registerUnhandledRejectionHandler } from "../infra/unhandled-rejections.js";
|